@extends('admin.layouts.layouts') @section('title', 'View Supplier') @section('content')
Supplier View
← Back
Supplier Code:
{{ $showDetails->supplier_code ?? '' }}
Supplier Type:
{{ $showDetails->supplierType->name ?? '-' }}
Name:
{{ $showDetails->name ?? '-' }}
Phone Number:
{{ $showDetails->phone_number ?? '' }}
Address:
{{ $showDetails->address ?? '' }}
GST No:
{{ $showDetails->gst_no ?? '' }}
GST File:
@if ($showDetails->gst_file) GST File @else No image available @endif
Tin No:
{{ $showDetails->tin_no ?? '' }}
Tin File:
@if ($showDetails->tin_file) Tin File @else No image available @endif
Created At:
{{ $showDetails->created_at->format('d-m-Y h:i A') ?? '' }}
@endsection