@extends('layouts.app') @section('content')
@if($printSetting->logo_path) @endif

{{ $printSetting->title }}

{{ $printSetting->address }}

Phone: {{ $printSetting->phone }}

All Products

@php $grandTotal = 0; @endphp @foreach ($products as $index => $product) @php $grandTotal += $product->retail_price ?? 0; @endphp @endforeach
# Product Name Categories Expiry Date Quantity Prices
{{ $index + 1 }} {{ $product->name }} @foreach ($product->categories as $category) {{ $category }} @endforeach {{ $product->expiry_date }} {{ $product->quantity }}
Purchase: {{ $product->purchase_price }}
Retail: {{ $product->retail_price }}
Local: {{ $product->local_price }}
Doctor: {{ $product->doctor_price }}
Total Retail Price: Rs. {{ $grandTotal }}

Note: {{ $printSetting->footer_note }}

{{ $printSetting->goodbye_message }}

Software developed by Next Steps Sols Pvt. Ltd.

🌐 www.nextstepsols.com

📞 Cell: 0332-0679987

@endsection