@extends('layouts.app') @section('title', __('Barista Orders')) @section('content')

@lang('Barista Orders')

@component('components.filters', ['title' => __('report.filters')]) @include('sell.partials.sell_list_filters') @if ($payment_types)
{!! Form::label('payment_method', __('lang_v1.payment_method') . ':') !!} {!! Form::select('payment_method', $payment_types, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!}
@endif @if (!empty($sources))
{!! Form::label('sell_list_filter_source', __('lang_v1.sources') . ':') !!} {!! Form::select('sell_list_filter_source', $sources, null, [ 'class' => 'form-control select2', 'style' => 'width:100%', 'placeholder' => __('lang_v1.all'), ]) !!}
@endif @endcomponent @component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.all_sales')]) @can('direct_sell.access') @slot('tool') {{--
@lang('messages.add')
--}} @endslot @endcan @if (auth()->user()->can('direct_sell.view') || auth()->user()->can('view_own_sell_only') || auth()->user()->can('view_commission_agent_sell')) {{-- --}}
@lang('#') @lang('messages.date') @lang('sale.invoice_no') @lang('sale.item') @lang('Quantity')@lang('sale.unit_price') @lang('sale.total')@lang('Status')
@endif @endcomponent
@stop @section('javascript') @endsection