@extends('Reports.template') @section('title') Supplier List @endsection @section('ExternalCss') @parent @endsection @section('Content')
@if ($businessEntityMasterData[0]->logo != null) Pharmacy Logo @endif
{{ $businessEntityMasterData[0]->name }}
{{ $businessEntityMasterData[0]->add1 . ' ' . $businessEntityMasterData[0]->add2 . ' ' . $businessEntityMasterData[0]->city . ' : ' . $businessEntityMasterData[0]->pincode }}
{{ 'Phone : ' . $businessEntityMasterData[0]->tel1 }}
@php $currentTime = \Carbon\Carbon::now(); @endphp @php $sr = 1; $type = ''; @endphp @foreach ($supplierDetails as $key => $supplier) @php if($supplier['supplier_type'] == 'PHA') $type = 'Pharmacy'; elseif($supplier['supplier_type'] == 'GEN') $type = 'General'; else $type = 'Common'; @endphp @endforeach
Supplier List
Sr No Supplier Type Supplier Name Contact Address City Email GST No Active/Inactive
{{ $sr++ }} {{ $type }} {{ $supplier['supplier_name'] }} {{ $supplier['supplier_phone_no'] }} {{ $supplier['supplier_address'] }} {{ $supplier['supplier_city'] }} {{ $supplier['supplier_email'] }} {{ $supplier['supplier_gstin_no'] }} {{ $supplier['supplier_is_active'] }}
{{ strtoupper(Session::get('userId')) . ' # ' . $currentTime->format('d/m/Y H:i:s ') }}
Back
@endsection @section('BootstrapModals') @endsection @section('ExternalJs') @endsection