@extends('layouts.adminmaster') @section('styles') {{-- --}} @endsection @section('content')
@csrf
{{lang('Create Invoice')}}
Preview

{{lang('Add Company Logo')}}

{{-- @csrf --}}
{{lang('Billing From')}}
{{lang('Billing To')}}
@php $customers = \App\Models\Customer::where('status', '1') ->where('verified', '1') ->with([ 'tickets' => function ($query) { $query ->whereIn('status', ['New', 'Inprogress']) // Filter tickets by status ->doesntHave('invoice'); // Exclude tickets with an invoice }, ]) ->get(); @endphp
@php $currency = \App\Models\Currency::first(); $code = $currency->code; @endphp
{{lang('Title')}} * {{lang('Price')}} * {{lang('Quantity')}} * {{lang('Amount')}} * {{lang('Action')}}
{{ config('currencies.' . $code) }}
{{ config('currencies.' . $code) }}
%
{{ config('currencies.' . $code) }}
{{lang('Total Amount:')}} 0.00
{{-- --}}
{{-- @include('admin.includes.search-modal') --}} @endsection @section('scripts') {{-- --}} @endsection