@extends('admin.layouts.master') @section('title', 'Services - Admin') @section('maincontent') @include('admin.layouts.topbar',$data)
@if ($errors->any()) @endif
@csrf
{{ __('Recommended Size : 720x900') }}
@if ($supports) @foreach ($supports as $data) @if (Auth::check() && Auth::user()->role == 'A' && Auth::user()->id != $data->id) @endif {{-- -------------model Start ------------------- --}} {{-- ------------- model end ------------------------- --}} @endforeach @endif
{{ __('Users Details') }} {{ __('Message') }} {{ __('Status') }} {{ __('Reply') }} {{ __('Action') }}
  • {{ __('Name:') }} {{ $data->Users->name }}
  • {{ __('Email:') }}
  • {{ __('Ticket Id:') }} {{ $data->ticket_id }}
{{ $data->message }} @if($data->status == 0) {{ __('Pending')}} @else {{ __('Close')}} @endif @if($data->status != 1) {{ __('Reply') }} @else {{ __('Close Support')}} @endif
@endsection