@extends('dashboard_guide.layouts.app') @section('content')
رقم الحجز | اسم المستخدم | السعر | من | الى | الاجراءات |
---|---|---|---|---|---|
{{$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
|