@extends('admin.layout') @section('title',__('Support')) @section('css') @endsection @section('breadcrump')

{{ __('Support') }}

@endsection @section('content')

{{ __('Support table') }}

@foreach($supports as $support) @endforeach
# {{ __('User') }} {{ __('Order details') }} {{ __('Date') }} {{ __('Solved') }} {{ __('Action') }}
{{$support->id}} {{$support['user']['name']}} #{{optional($support->order)->order_id}} {{date('d-m-Y H:i',strtotime($support->created_at))}} @if($support->solution) @else @endif
@csrf @method('delete')
@endsection @section('scripts') @include('admin.pages.messages.scripts') @endsection