@extends('admin.layouts.app')
@push('styles_top')
@endpush
@push('topnav')
Logs
@endpush
@section('content')
Date |
Message |
@if (count($history) > 0)
@foreach ($history as $h)
{{ $h->created_at }}
|
{{ $h->message ?? '' }}
|
@endforeach
@else
No records available.
@endif
{{ $history->appends(request()->input())->links('pagination.admin') }}
@endsection
@push('scripts_bottom')
@endpush