@extends('layouts.app') @section('title', __( 'app.all_sales')) @section('content') @include('layouts.partials.breadcrumb',['page_title'=> __( 'app.all_sales') , 'bread_crumbs'=>array( array('title'=>__('app.manage_sells'),'url'=>''),array('title'=> __('app.all_sales'),'url'=>''))])
@component('components.filters', ['title' => __('report.sale_search_option')]) @include('sell.partials.sell_list_filters') @if(!empty($sources))
{!! Form::label('sell_list_filter_source', __('app.sources') . ':') !!} {!! Form::select('sell_list_filter_source', $sources, null, ['class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('app.all') ]); !!}
@endif @endcomponent
@component('components.widget', ['class' => 'box', 'title' => __( 'app.all_sales')]) @can('direct_sell.access') @slot('tool')
@lang('messages.add')
@endslot @endcan @if(userHasPermission('direct_sell.view') || userHasPermission('view_own_sell_only') || userHasPermission('view_commission_agent_sell')) @php $custom_labels = json_decode(session('business.custom_labels'), true); @endphp
@lang('sale.invoice_no') @lang('messages.date') @lang('sale.list_heading_customer_name') @lang('sale.list_heading_contact_no') @lang('sale.location') @lang('sale.list_heading_payment_status') @lang('sale.list_heading_payment_method') @lang('sale.list_heading_total_amount') @lang('sale.list_heading_total_paid') @lang('sale.list_heading_sell_due') @lang('sale.list_heading_total_items') @lang('app.types_of_service') {{ $custom_labels['types_of_service']['custom_field_1'] ?? __('app.service_custom_field_1' )}} {{ $custom_labels['sell']['custom_field_1'] ?? '' }} {{ $custom_labels['sell']['custom_field_2'] ?? ''}} {{ $custom_labels['sell']['custom_field_3'] ?? ''}} {{ $custom_labels['sell']['custom_field_4'] ?? ''}} @lang('sale.list_heading_added_by') @lang('sale.list_heading_payer') @lang('sale.list_heading_sell_note') @lang('messages.action')
@endif @endcomponent
@stop @section('css') @stop @section('javascript') @endsection