@extends('Layouts.adminLayout') @section('title') {{__('Ticket')}} @endsection @section('css') @endsection @section('breadcrumb')
@endsection @section('content')
@php $i=1; @endphp @foreach($data['tickets'] as $value) @endforeach
{{__('Index')}} {{__('Subject')}} {{__('User')}} {{__('Date')}} {{__('Edit Date')}} {{__('Possibilities')}}
{{$i++}} {{$value->subject}} {{($value->user!=null)? $value->user->name.' '.$value->family:' '}} {{timestampDateDay($value->created_at,true)['date']}} {{timestampDateDay($value->updated_at,true)['date']}}
@endsection @section('script') @endsection