@include('partials.html') @include("partials.title-meta", ["title" => $title]) @include('partials.head-css') @include('sweetalert::alert')
@include('partials.menu', ["title" => $title])
Filename : {{ $data->file_name ?? "" }}
Upload by : {{ $data->input_name ?? "" }}
Upload Date : {{ $data->upload_date ?? "" }}
Success : {{ number_format($data->row_success,0,',','.') ?? "" }} Row
Fails : {{ number_format($data->row_fails,0,',','.') ?? "" }} Row
Status @if($data->status == "PROCESSING") : {{ $data->status ?? "" }} @elseif ($data->status == "COMPLETED") : {{ $data->status ?? "" }} @else : {{ $data->status ?? "" }} @endif

List Payload

@php $payload_list = explode(";",$data->payload); @endphp @foreach ( $payload_list as $payload) @php $row_payload = explode(":",$payload); if(count($row_payload) > 1) { $row = $row_payload[0]; $desc = $row_payload[1]; }else{ $row = "-"; $desc = "-"; } @endphp @endforeach
Row Descriptions
{{ $row }} {{ $desc }}
@include('partials.footer')
@include('partials.right-sidebar') @include('partials.footer-scripts') {{-- --}}