@extends('layouts.backend.master') @section('title') - Batch @endsection @section('mainPart')
@if(Session::has('message'))
@endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@foreach ($batches as $key => $batch) @endforeach
# Duration Status Action
{{ ++$key }} {{ $batch->name}} @if( $batch->status==1 )Active @elseif( $batch->status==0 )Inactive @endif
@endsection