@extends('front.layouts.master-auth') @section('content')
@if(count($supports) > 0)
@foreach($supports as $support)

{{ $support->title ?: 'Support Ticket #' . $support->id }}

{{--
--}} {{-- --}} {{-- @if($support->type)--}} {{-- {{ getTrans($support->type->display_name, lang()) }}--}} {{-- @else--}} {{-- @lang('General')--}} {{-- @endif--}} {{-- --}} {{-- --}} {{-- {{ localized_friendly_time($support->created_at) }}--}} {{-- --}} {{--
--}}
@if($support->status == 'pending') @lang('Waiting') @elseif($support->status == 'open') @lang('Open') @else @lang('Closed') @endif

{{ Str::limit($support->body, 150) }}

@if($support->image)
Support Image
@endif
@endforeach
{{ $supports->links('front.pagination') }}
@else

@lang('No Support Tickets')

@lang('لم تقم بإنشاء أي تذاكر دعم فني بعد.')

@lang('Create Your First Ticket')
@endif
@endsection