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

{{ __('Customer Notes') }}

{{ __('Name:') }} {{ isset($customers) ? $customers->name : '' }}

@if(isset($date_range) && !empty($date_range))

{{ __('Period:') }} {{ $date_range }}

@endif

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

@endsection @section('list-table') @foreach ($noteList as $data) @endforeach
{{ __('Subject') }} {{ __('Content') }} {{ __('Created At') }}
{{ $data->subject }} {{ $data->content }} {{ timeZoneformatDate($data->created_at) }} {{ timeZonegetTime($data->created_at) }}
@endsection