@extends('layouts.application') @section('content')
@if ($message = Session::get('success'))
{{ $message }}
@endif

კომპანია: {{ $companyName->company_name }}

@foreach($invoices as $invoice)
@if($invoice['invoice_items']->count() > 0)
@foreach($invoice['invoice_items'] as $key => $item) @endforeach
# Product Detail Piece
{{ $key + 1 }} {{ $item->product->brand->title ?? '' }} {{ $item->product->title ?? '' }} {{ $item->piece }}

@else @endif
@endforeach
@endsection