@extends('admin.layout.master') @section('css') @endsection @section('content') {{-- table --}} {{ awtTrans('ارسال اشعار') }} {{ awtTrans('ارسال ايميل') }} {{ awtTrans('التاريخ') }} {{ awtTrans('صورة الشركة') }} {{ awtTrans('الاسم') }} {{ awtTrans('البريد الالكتروني') }} {{ awtTrans('رقم الجوال') }} @if ($status == 'all' || $status == 'pending') {{ awtTrans('قبول/رفض') }} @endif {{ awtTrans('الحالة') }} {{ awtTrans('التحكم') }} @foreach ($rows as $row) {{ \Carbon\Carbon::parse($row->created_at)->format('d/m/Y') }} {{ $row->name }} {{ $row->email }} {{ $row->phone }} @if ($status == 'all' || $status == 'pending') @if ($row->approve == 'pending') @elseif($row->approve == 'accept') @else @endif @endif @if ($row->approve == 'accept') {{ awtTrans('مقبول') }} @elseif ($row->approve == 'pending') {{ awtTrans('بانتظار القبول') }} @else {{ awtTrans('غير مقبول') }} @endif @endforeach {{-- #table --}} {{-- notify users model --}} {{-- notify users model --}} @endsection @section('js') {{-- --}} @if ($status == 'all' || $status == 'pending') @endif {{-- delete all script --}} @include('admin.shared.deleteAll') {{-- delete all script --}} {{-- delete one user script --}} @include('admin.shared.deleteOne') {{-- delete one user script --}} {{-- notify one user or all user script --}} @include('admin.shared.notify') {{-- notify one user or all user script --}} @endsection