@extends('admin.master') @section('title') Supplier Invoice Details @endsection @section('sideMenuTitle') Supplier Invoice @endsection @section('pageTitle') Go To Supplier Invoice List @endsection @section('bodyContent')
From
{{ $settings->name ?? "Company Name" }}
{{ $settings->address ?? "Company Address" }}
Phone: {{ $settings->phone ?? "Not Set" }}
Email: {{ $settings->email ?? "Not Set" }}
To
{{$supplier->name}}
{{$supplier->address}}
Phone: {{$supplier->phone}}
Email: {{$supplier->email}}
Invoice Number

Payment Type: Cash
@foreach($products as $val)
Serial # Product Qty Unit Price({{$settings == NULL ? "Currency Not Set" : $settings->currency_symbol ?? "Currency Not Set"}}) Sub Total({{$settings == NULL ? "Currency Not Set" : $settings->currency_symbol ?? "Currency Not Set"}}) Discount Grand Total({{$settings == NULL ? "Currency Not Set" : $settings->currency_symbol ?? "Currency Not Set"}})