@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->user->name??''}} {{$ticket->subject??''}} @if(!empty($ticket->answer)) {{ awtTrans('تم الرد') }} @else {{ awtTrans('لم يتم الرد') }} @endif @endforeach {{-- #table --}} @endsection @section('js') @endsection