@extends('layouts.app') @section('content')
@foreach($inquiries as $inquiry) @endforeach
{{ app()->getLocale() == 'ar' ? 'العميل' : 'Customer' }} {{ app()->getLocale() == 'ar' ? 'السيارة' : 'Car' }} {{ app()->getLocale() == 'ar' ? 'نوع الطلب' : 'Request Type' }} {{ app()->getLocale() == 'ar' ? 'الحالة' : 'Status' }} {{ app()->getLocale() == 'ar' ? 'التاريخ' : 'Date' }} {{ app()->getLocale() == 'ar' ? 'العمليات' : 'Actions' }}
{{ $inquiry->customer->name }}
{{ $inquiry->customer->phone }}
{{ $inquiry->car->title }} {{ $inquiry->request_type }} {{ $inquiry->status }} {{ $inquiry->created_at->format('Y/m/d H:i') }} {{ app()->getLocale() == 'ar' ? 'عرض التفاصيل' : 'View Details' }}
{{ $inquiries->links() }}
@endsection