@extends('layouts.sale') @section('style') @endsection @section('content') {{-- @include('sale.inc.data') --}}
@if (get_config('style_sale') == "table")
@else @foreach($productsFromOutlet as $product)
{{ HTML::image($product->thumbnail) }}

{{ str_limit($product->name,20) }}{{money($product->price)}}
[{{$product->sku}}]

@endforeach @endif
@if (count($draftInvoicesNoTotal) > 0)
{{ Form::open(['method' => 'DELETE', 'route' => 'delete.draftInvoices']) }} {{ Form::close() }}
@endif
@include('sale.inc.sidebar')
@include('sale.inc.modal') @endsection @section('addJs') @endsection