@extends('layouts.list_pdf') @section('pdf-title')
{{ __('Supplier Lists') }}
{{ __('Print Date:') }} {{ formatDate(date('d-m-Y')) }}
| {{ __('Name') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Address') }} | {{ __('Currency') }} | {{ __('Country') }} | {{ __('Status') }} | {{ __('Created At') }} |
| {{ $supplier->name }} | {{ $supplier->email }} | {{ $supplier->contact }} | {{ $address }} | {{ isset($supplier->currency->name) ? $supplier->currency->name : '' }} | {{ isset($supplier->country->name) ? $supplier->country->name : ''}} | {{ $supplier->is_active == 1 ? "Active" : "Inactive" }} | {{ !empty($supplier->created_at) ? timeZoneformatDate($supplier->created_at).' '.timeZonegetTime($supplier->created_at) : '' }} |