@extends('admin.layouts.master') @section('title', 'Support Admin ') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
{{ __('Support Admin') }}
@can('blogs.delete') @endcan @can('blogs.create') {{ __('Support ') }} @endcan
@if ($supports) @foreach ($supports as $data) ​ @endforeach @endif
{{ __('#') }} {{ __('User Details') }} {{ __('Issue') }} {{ __('Subject') }} {{ __('Status') }} {{ __('Reply') }} {{ __('Action') }}
{{ $loop->iteration }}
  • {{ __('Name:') }} {{ $data->user->fname }} {{ $data->user->lname }}
  • {{ __('Email:') }}
  • {{ __('Ticket Id:') }} {{ $data->ticket_id }}
{{ $data->SupportType->name}} {{ $data->subject }} @if($data->status == 0) {{ __('Pending')}} @else {{ __('Close')}} @endif @if($data->status != 1) {{ __('Reply') }} @else {{ __('Close Support')}} @endif


@endsection