@extends('admin.layout.master') @section('css') @endsection @section('content') {{awtTrans('التاريخ ')}} {{awtTrans('رقم الطلب ')}} {{awtTrans('اسم المستخدم')}} {{awtTrans('رقم الجوال')}} {{awtTrans('حالة البلاغ')}} {{awtTrans('التحكم')}} @foreach($tickets as $ticket) {{\Carbon\Carbon::parse($ticket->created_at)->format('d/m/Y')}} {{$ticket->order->id??'-'}} {{$ticket->subject?? $ticket->user?->name ?? ''}} {{$ticket->phone??''}} @if(!empty($ticket->answer)) {{ awtTrans('تم الرد') }} @else {{ awtTrans('لم يتم الرد') }} @endif @endforeach {{-- #table --}} @endsection @section('js') {{-- delete all script --}} @include('admin.shared.deleteAll') {{-- delete all script --}} {{-- delete one user script --}} @include('admin.shared.deleteOne') {{-- delete one user script --}} @endsection