@if(!$opportunityquote->isEmpty()) @foreach($opportunityquote as $quote) @php($owners = \App\Models\Admin::where('admin_uuid', $quote->quote_owner)->first()) @php($account = \App\Models\Accounts::where('account_uuid',$quote->account_uuid)->first())
{{$quote->quote_title}} {{$owners->title}} {{$owners->firstname}} {{$owners->lastname}} {{date('d M,Y',strtotime($quote->quote_expiration))}}
{{$quote->quote_title}}
{{ !empty($account)?$account->account_name: '' }}
{{date('d M,Y',strtotime($quote->quote_expiration))}}
@endforeach @else

{{ trans('general.no_records') }}

@endif