@extends('admin.layouts.admin') {{-- =========== meta Title =================== --}} @section('title') تیکت ها @endsection {{-- =========== My Css Style =================== --}} @section('style') @endsection {{-- =========== My JavaScript =================== --}} @section('script') @endsection {{-- =========== CONTENT =================== --}} @section('content')
لیست تیکت ها
@if(count($tickets)>0)
@method('delete') @csrf @foreach($tickets as $key=>$item) @endforeach
ردیف کاربر عنوان وضعیت مشاهده شماره تیکت تاریخ
{{ $tickets->firstItem()+$key }} {{ isset($item->User->name) ? $item->User->name : 'بدون نام' }} {{ $item->title }} {{ $item->Status->title }} {{ $item->id }} {{ verta($item->created_at)->format('d - %B - Y') }}
{{ $tickets->render() }}
@else

تیکتی برای نمایش موجود نیست
@endif
@endsection