@extends('admin.app') @section('page_title','Course Verification Excel') @section('page_location') @endsection @section('main-content')

Verification Excel

@if(Session::get('execl'))
90%
@endif @php Session()->forget('execl'); $execl_error = Session::get('execl_error') ? Session::get('execl_error') : null; @endphp @if($execl_error != null) @foreach ($execl_error as $error_data) @if(isset($error_data['slug']))

Slug {{ $error_data['slug'] }} already exists

@endif @endforeach @endif @php Session()->forget('execl_error'); Session()->forget('execl'); {{-- Courses successfully created --}} @endphp {{ Session::has('success_excel') ? Session::get('success_excel') : ''}}
@endsection