@extends('admin.layout.master') @section('title', "مقدمى الخدمة") @section('content')

مقدمى الخدمة

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('phone')) {{ $errors->first('phone') }} @endif
@if ($errors->has('status')) {{ $errors->first('status') }} @endif
@if ($errors->has('date_from')) {{ $errors->first('date_from') }} @endif
@if ($errors->has('date_to')) {{ $errors->first('date_to') }} @endif
@foreach($rows as $row) @endforeach
# إسم المستخدم رقم الجوال الحالة التحكم
{{$i}} {{$row->name}} {{$row->phone}} {{$row->status =='active' ? "مفعل":"غير مفعل"}}
@stop