@if(empty($pdf)) @extends('layouts.contentNavbarLayout') @endif @section('content')
@if(session('success'))
{{ session('success') }}
@endif

Service Invoice
Zillion IT Solutions. S1, 2nd Floor, Kairali Complex

Thondayad, Calicut -17 Kerala, India
Invoice No: {{ $invoice->invoice_number }}
Invoice Date: {{ \Carbon\Carbon::parse($invoice->date)->format('d-m-Y') }}
To:

Client Name: M/s {{ $invoice->client->name }}
Address: {{ $invoice->client->address ?? '' }}

@foreach($invoice->items as $index => $item) @endforeach {{-- --}} @foreach($invoice->designations as $index => $designation) @endforeach @php $selectedTechnologies = old('technologies', json_decode($invoice->technologies ?? '[]', true)); if (!is_array($selectedTechnologies)) { $selectedTechnologies = []; } @endphp {{-- --}} @foreach ($technologies as $technology) @if(in_array($technology->id, $selectedTechnologies)) @endif @endforeach
SL.NO. Particulars Of Services HSN/SAC Amount
{{ $index + 1 }} {{ $item->description }} {{ number_format($item->amount, 2) }}
Resources Involved Resources Involved
{{ $designation->name }} - {{ $designation->pivot->count }}
Resources Involved Project Technology Stack
{{ $technology->technology }}
Service Total ₹{{ number_format($invoice->total_amount, 2) }}
Received Amount {{ $invoice->received_amount ? '₹' . number_format($invoice->received_amount, 2) : 'NIL' }}
Balance ₹{{ number_format($invoice->total_amount - ($invoice->received_amount ?? 0), 2) }}
Grand Total ₹{{ number_format($invoice->total_amount, 2) }}
Total Invoice Amount In Words: {{ $amountInWords }} only
Bank Details:
Beneficiary: Zillion IT Solutions
Bank Name: State Bank Of India
Branch: PBB Branch, Pottammal
Bank Account Number: 38456815606
Bank Branch IFSC: SBIN0070758

Amount of Tax Subject to Reverse Charge.

Certified that the particulars given above are true and correct.


For Zillion IT Solutions

____________________________

Authorised Signatory
*Note: {{ $invoice->remarks }}
@csrf
@if(session('message'))
{{ session('message') }}
@endif
@endsection