@extends('user.layout') @section('content')
{{ __('Quotes') }}
@if (count($quotes) == 0)

{{ __('NO_QUOTE_REQUEST_FOUND') }}

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