@extends('admin.layout.master') @section('title', "الإدارة") @section('content')

الاعلانات

@csrf
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('id_number')) {{ $errors->first('id_number') }} @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
@include('admin.layout.message')

الاعلانات

@foreach($rows as $row) @endforeach
# رقم الاعلان الاسم بالعربي الاسم بالانجليزي صاحب الاعلان المدينه القسم الحالة التحكم
{{$i}} {{$row->id}} {{optional($row->translate('ar'))->name ?? '-'}} {{optional($row->translate('en'))->name ?? '-'}} {{optional(\App\Models\User::find($row->user_id))->name}} {{optional(\App\Models\City::find($row->city_id))->name}} {{optional(\App\Models\Category::find($row->category_id))->name}} @if($row->active == 0) غير مفعل @else مفعل @endif
@stop