@extends('layouts.main') @section('content')

{{ __('strings.help_register') }}

{{csrf_field()}}

{{ __('strings.history') }}

@php $list = App\SupportHistory::with('user')->where("support_id",$idSupport)->get(); @endphp
@foreach($list as $op) @endforeach
{{ __('strings.id') }} {{ __('strings.name') }} {{ __('strings.comment') }} {{ __('strings.status') }} {{ __('strings.date_hour') }}
{{$op->id}} {{$op->user->name.' '.$op->user->last_name}} {{$op->comments}} {{$op->status}}
@endsection @push('scripts') @endpush