@extends('layouts.admin_app') @section('content') @if(Session::has('success_message'))
{!! session('success_message') !!}
@endif

Failed Form Logs

Total: {{ $logs->total() }} logs
@foreach($logs as $log) @endforeach
ID Form Reporter Details Error Created At Actions
{{ $log->id }}
{{ $log->form->name ?? 'N/A' }}
Form ID: {{ $log->form_id }}
location id{{ $log->location_id ?? 'N/A' }}
{{ $log->location->trading_name ?? 'N/A' }}
user id{{ $log->user_id ?? 'N/A' }}
{{ $log->user->name ?? 'N/A' }}
{{ Str::limit($log->error, 150) }}
{{ $log->created_at->format('M d, Y') }}
{{ $log->created_at->format('h:i A') }}
{{ $log->created_at->diffForHumans() }}
@if($logs->hasPages()) @endif
@endsection @section('styles') @endsection @section('scripts') @endsection