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