@extends('layouts.app') @push('css') @endpush @section('content')
Manage Batch
Batch Information
Course Name
{{ $batchInfo[0]->title }}
Venue Name
{{ $batchInfo[0]->venue_name }}
Batch Name
{{ $batchInfo[0]->batch_name }}
Start Date
{{ Carbon\Carbon::parse($batchInfo[0]->started_at)->format('d/m/Y') }}
Expected End Date
{{ Carbon\Carbon::parse($batchInfo[0]->ended_at)->format('d/m/Y') }}
Completed Date
@if ($batchInfo[0]->completed_at == null) Batch not marked as completed yet @else {{ $batchInfo[0]->completed_at }} @endif
@if ($batchInfo[0]->status == '1' || $batchInfo[0]->status == '0') @can('batch.edit') Initiate Batch @endcan @endif
Bulk Upload
Choose Excel File (.xls/.xlsx)
@csrf @csrf
Download Excel Format
@endsection @push('js') @endpush