@extends('layouts.list_pdf') @section('pdf-title') {{ __('Customer List') }} @endsection @section('header-info')

{{ __('Customer List') }}

{{ __('Print Date') }}: {{ formatDate(date('d-m-Y')) }}

@endsection @section('list-table') @foreach($customersList as $customer) @endforeach
{{ __('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) : '' }}
@endsection