@section('page_name') Quote list @stop @section('breadcrumbs') Quotes & invoices List quotes @stop @section('scripts') @stop @section('content')
Filter options
Assigned to @if (Input::has('user')) @endif
Jobstatus @if (Input::has('status')) @endif
Created on - @if (Input::has('datestart') || Input::has('dateend')) @endif
Quote list
@foreach($quotes as $quote) @if (strtotime($quote->requiredBy) > time() || $quote->getStatus->type == 'Completed' || $quote->getStatus->type == 'Cancelled') @endforeach
Quote Date created Required by Customer Title Status Total Received
{{ $quote->id }} {{ CommonFunctions::formatDateTime($quote->createdOn) }}@else@endif{{ CommonFunctions::formatDateTime($quote->requiredBy) }} {{ $quote->getCustomer->getCustomerName() }} {{ $quote->description }} {{ $quote->getStatus->type }} € {{ CommonFunctions::formatNumber($quote->getTotal()) }} € {{ CommonFunctions::formatNumber($quote->getPaid()) }}
@stop