@extends('layout') @section('title') {{ __('لوحة التحكم') }} @endsection @section('body-content')

{{ __('لوحة التحكم') }}

@include('profile.sidebar')
{{ __('إجمالي السيارات') }}

{{ $total_car }}

{{ __('translate.View All') }}
{{ __('الحجوزات المعلقة') }}

{{ $total_pending_requests }}

{{ __('translate.View All') }}
{{ __('الحجوزات المؤكدة') }}

{{ $total_confirmed_requests }}

{{ __('translate.View All') }}
@foreach ($cars as $index => $car) @endforeach
{{ __('السيارة') }} {{ __('ماركة') }} {{ __('السعر') }} {{ __('الحالة') }} {{ __('أجراء') }}
{{ html_decode($car->title) }} {{ $car?->brand?->name }} @if ($car->offer_price) {{ currency($car->offer_price) }} @else {{ currency($car->regular_price) }} @endif @if ($car->approved_by_admin == 'approved') @else @endif
@csrf @method('DELETE')
@include('profile.logout')
@endsection @push('js_section') @endpush