@extends('layouts.admin')
@section('content')
@if(session('success'))
Success !
{!! Session::get('success') !!}
@elseif(session('failure'))
Failed ! {{ Session::get('failure') }}
@endif
BlackList Upload History
Cron URL:
{{ route('upload.blacklist.v2') }}
{{-- --}}
PDF Cron URL:
{{ route('blacklist.generate-pdf-v2') }}
| S.N |
Uploaded Date |
Uploaded By |
Version |
File |
Upload Status |
@forelse($blcklistUploadDetails as $k => $detail)
| {{ $k +1 }} |
{{ \Carbon\Carbon::parse($detail->created_at)->format('Y-m-d H:i') }} |
{{ $detail->admins->first_name ?? null }} |
{{ $detail->version }} |
Download
|
@if($detail->status)
Completed
@else
Incomplete
@endif
|
@empty
| No data available in the table ... |
@endforelse
|
@include('pagination', ['paginator' => $blcklistUploadDetails])
|
@stop
@section('ext_css')
@endsection
@section('ext_js')
@endsection