@extends('admin.layouts.simple.master') @section('title', 'Batches') @section('css') @endsection @section('style') @endsection @section('breadcrumb-title')

All Batches

@endsection @section('breadcrumb-items') @endsection @section('content')
Batches
Add Batch
@if(Session::has('message')) @endif
@foreach($batches as $key => $batch) @endforeach
# Name Batch Id Limit Course Teacher Status Action
{{$key}} {{ $batch->name }} {{ $batch->batch_id }} {{ $batch->limit }} {{ $batch->course->name }} {{ $batch->teacher->name }} {{ ($batch->is_active == 1) ? 'Active' : 'Non Active' }}
@endsection @section('script') @endsection