@extends('layouts.app') @section('title', __('lang_v1.quotation')) @section('content') @lang('lang_v1.list_quotations') @component('components.filters', ['title' => __('report.filters')]) {!! Form::label('sell_list_filter_location_id', __('purchase.business_location') . ':') !!} {!! Form::select('sell_list_filter_location_id', $business_locations, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('sell_list_filter_customer_id', __('contact.customer') . ':') !!} {!! Form::select('sell_list_filter_customer_id', $customers, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!} {!! Form::label('sell_list_filter_date_range', __('report.date_range') . ':') !!} {!! Form::text('sell_list_filter_date_range', null, [ 'placeholder' => __('lang_v1.select_a_date_range'), 'class' => 'form-control', 'readonly', ]) !!} {!! Form::label('created_by', __('report.user') . ':') !!} {!! Form::select('created_by', $sales_representative, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', ]) !!} @endcomponent @lang('lang_v1.add_quotation') @component('components.widget', ['class' => 'box-primary']) @lang('messages.date') @lang('purchase.ref_no') @lang('sale.customer_name') @lang('lang_v1.contact_no') @lang('sale.location') @lang('lang_v1.total_items') @lang('lang_v1.added_by') @lang('messages.action') @endcomponent @stop @section('javascript') @endsection