@extends('admin.layout.master') @section('title', "الرحلات") @section('content')

الرحلات

{{-- @csrf--}}
@if ($errors->has('trip_code')) {{ $errors->first('trip_code') }} @endif
@if ($errors->has('client_code')) {{ $errors->first('client_code') }} @endif
@if ($errors->has('captain_code')) {{ $errors->first('captain_code') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('class_id')) {{ $errors->first('class_id') }} @endif
@if ($errors->has('city_id')) {{ $errors->first('city_id') }} @endif
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
{{-- @include('admin.layout.message')--}}

الرحلات

@foreach($rows as $row) @if(!is_null($row->client_id)) @endif @endforeach
# رقم الرحلة العميل السائق الدولة الفئة الحالة عدد الكيلوميتر نوع الدفع السعر الكلى التحكم
{{$i}} {{$row->trip_code}} {{$row->client->fullname}} {{$row->captain_id ? $row->captain->fullname : 'لم يخصص بعد' }} {{$row->country->name['ar']}} {{$row->class->name['ar']}} {{trip_status($row->status)}} {{$row->kilos ? $row->kilos : 'لم يحدد بعد'}} {{$row->payment == 'cash' ? 'نقدى' : 'من المحفظه'}} {{$row->total_price ? $row->total_price : 'لم يحدد بعد'}} {{-- --}} {{-- --}} {{-- --}}
@stop