@extends('layouts.app') @section('title', 'Import Completed') @section('content')
@if($result['status'] === 'success')

Import Completed Successfully

Your file was imported into the system.

@else

Import Failed

There was an issue importing your file.

@endif

Import Summary

File Name
{{ $filename }}
Status
@if($result['status'] === 'success') Success @else Failed @endif
Rows Processed
{{ $result['rows_processed'] }}
Message
{{ $result['message'] }}
Date & Time
{{ now()->format('F j, Y \a\t g:i a') }}
@if($result['status'] === 'success')

Next Steps

@else

Troubleshooting

@endif
Back to Import
@endsection