@extends('admin.layout') @section('content')
Quotes
@if (count($quotes) == 0)

NO QUOTE REQUEST FOUND

@else
@foreach ($quotes as $key => $quote) @includeif('admin.quote.quote-details') @endforeach
Name Email Details Status Mail Action
{{convertUtf8($quote->name)}} {{convertUtf8($quote->email)}}
@csrf
Send
@csrf
@endif
@endsection