@extends('layouts.app') @push('css') @endpush @section('content')
Create Batch

List of Batches

@foreach ($batchs as $key => $batch) @if ($batch->status == '1' || $batch->status == '0') @endif @endforeach
# Course Name Venue Name Batch Name Created At Created By Status Action
{{ $cnt++ }} @if (isset($batch->title)) {{ $batch->title }} @else @endif @if (isset($batch->venue_name)) {{ $batch->venue_name }} @else @endif {{ $batch->batch_name }} {{ Carbon\Carbon::parse($batch->created_at)->format('d-m-Y') }} {{ $batch->created_by }} @if ($batch->status == '2') Completed at:
{{ $batch->completed_at }} @else Currently Active @endif
@if ($batch->status == '1' || $batch->status == '0') @can('batch.edit') Edit Manage Initiate @if ($batch->notify_head == 0) Notify @else Notified @endif @endcan @endif @can('batch.destroy') @endcan
@foreach ($batchs as $key => $batch) @if ($batch->status == '1' || $batch->status == '0') @else @endif @endforeach
# Course Name Venue Name Batch Name Created At Created By Status Action
{{ $cnt2++ }} @if (isset($batch->title)) {{ $batch->title }} @else @endif @if (isset($batch->venue_name)) {{ $batch->venue_name }} @else @endif {{ $batch->batch_name }} {{ Carbon\Carbon::parse($batch->created_at)->format('d-m-Y') }} {{ $batch->created_by }} @if ($batch->status == '2') Completed at:
{{ $batch->completed_at }} @else Currently Active @endif
@if ($batch->status == '1' || $batch->status == '0') @can('batch.edit') Edit Manage Initiate @if ($batch->notify_head == 0) Notify @else Notified @endif @endcan @endif @can('batch.destroy') @endcan
@endsection @push('js') @endpush