@extends('layout.main') @section('title', config('app.name') . ' | Reports') @section('content')

Documents Lists

You can search either by Customer id,Doc id and Customer Name
You can search the From and To date Filter(dd-mm-yyyy)
@include('partials.errors') @include('partials.success')
{{----}} {{----}} @if(isset($documents) && $documents !='') @forelse($documents as $document) {{----}} {{----}} @empty @endforelse @endif {{--image view start here--}} {{--image view--}} {{--doc view--}}
# Doc id Customer Name Customer_id Subject Reference DateMessageCreated_atActions
{{$i++}} {{$document->document_id}} {{$document->customer_name}} {{$document->customer_id}} {{$document->subject}} {{\Carbon\Carbon::parse($document->refer_date)->format('d-m-Y')}}{{$document->message}}{{\Carbon\Carbon::parse($document->created_at)->format('d-M-Y , g:i A')}}
No Record Found!
@endsection