@extends('admin.table_layouts')
@section('content')
@foreach ($notificationLogs as $log)
| {{ $log->id }} |
{{ $log->type_label }} |
{{ $log->address }} |
{{ $log->title }} |
{{ $log->content }} |
{{ $log->created_at }} |
@if ($log->status < 0)
{{ $log->error }}
@elseif($log->status > 0)
{{ trans('common.success') }}
@else
{{ trans('common.status.pending_dispatch') }}
@endif
|
@endforeach
@endsection