@extends('layouts.list_pdf') @section('pdf-title')
{{ __('Customer List') }}
{{ __('Print Date') }}: {{ formatDate(date('d-m-Y')) }}
| {{ __('Name') }} | {{ __('Email') }} | {{ __('Phone') }} | {{ __('Currency') }} | {{ __('Status') }} | {{ __('Created At') }} |
| {{ $customer->name }} | {{ $customer->email }} | {{ $customer->phone}} | {{ isset($customer->currency->name) && !empty($customer->currency->name) ? $customer->currency->name : "" }} | {{ $customer->is_active == 1 ? __('Active') : __('Inactive') }} | {{ !empty($customer->created_at) ? timeZoneformatDate($customer->created_at) . ' ' . timeZonegetTime($customer->created_at) : '' }} |