@extends('tenant.pos.pos-tabs') @php $activeTab = 'pos_invoices'; @endphp @section('breadcrumb') @include('tenant.layouts.breadcrumb', [ 'items' => [ __('breadcrumb.pos') => '#', __('breadcrumb.pos_invoices') => '#', ], ]) @endsection @section('sidebar') @include('tenant.layouts.sidebar', ['activeItem' => 'pos.pos-invoices']) @endsection @section('content-field')
@php $data = [ 'day_date' => $day_date, 'invoices' => $invoices, 'branches' => $branches, 'barcodes' => $barcodes, 'clients' => $clients, 'payment_way' => $payment_way, 'active_year' => $active_year, 'print_data' => Session::get('print_data'), ]; @endphp
@endsection @push('script') @scriptag('build/js/vue-components/pos-invoices.js') @endpush @prepend('script') @endprepend