@if(sizeof($products) > 0)
Ejecutivo: {!!App\User::where('employee_number',Session::get('employee_number'))->first()->full_name!!}
Saldo: ${!!App\User::where('employee_number',Session::get('employee_number'))->first()->credit!!}
Nombre
|
Precio
|
Descripción
|
|
Cantidad
|
@foreach($products['products'] as $pos => $product)
{!!$product->name!!}
|
{!!$product->price!!}
|
{!!$product->description!!}
|
|
{!!$products['amounts'][$pos] !!}
|
@endforeach
Total: ${!!Session::get('total')!!}
{!!Form::open(['method' => 'post', 'action' => 'Manager\GeneralRequestsController@store','id' => 'form-general-requests'])!!}
{!!Form::close()!!}
@else
@endif
@endsection
@section('modals')
@include('manager/cart/modals/cancel_order')
@include('manager/cart/modals/exceeded_credit')
@endsection
@section('script')
{!!Html::script('js/laroute.js')!!}
{!!Html::script('js/context_menu/jquery.contextMenu.js')!!}
{!!Html::script('js/manager/cart/index.js')!!}
@endsection