@extends('dashboard_guide.layouts.app') @section('content')
@if(auth('guide')->user()->approve == 1)

المسارات الخاصة

@include('dashboard_guide.layouts.messages')
@csrf
@foreach($tracks as $row) @endforeach
رقم الحجز اسم المستخدم السعر من الى الاجراءات
{{$row->id}} {{$row->user->name}} {{$row->price}} {{$row->from_date}} {{$row->to_date}}
@if($row->status == 'rejected' || $row->status == 'pending') @endif @if($row->status == 'accepted' || $row->status == 'pending') @endif @if($row->status == 'accepted') @endif @if($row->status == 'finished') تم الانتهاء @endif
{{$tracks->appends(request()->query())->render()}}
@else

تنبيه! حسابك قيد المراجعة

@endif
@endsection