@extends('layouts.side_bar') @section('content')

{{-- --}} Batch Management Dashboard {{--
--}} {{--

--}} {{-- --}} {{-- --}} {{-- Add New Batch--}} {{-- --}} {{-- Import Excel File--}} {{-- --}} {{-- --}} {{-- Duplicate Data--}} {{-- --}} {{--

--}} {{--

View All View Inactive Users

--}} {{--

--}} {{-- Search Batch Data--}} {{-- --}} {{-- --}} {{-- Search Batch Data--}} {{-- --}} {{--

--}} {{--
--}} {{-- try--}}
{{--try 1--}}
Batch Management Dashboard
Inactive Batches
@foreach($batch as $row) @if($row->status =="Inactive") @endif @endforeach
SL Client Name Batch Name Assign Date Valid Till ACTION
{{ $row->id}} {{ $row->client_name}} {{ $row->batch_name }} {{ $row->assign_date}} {{ $row->valid_till}} Activate Edit {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="hide")--}} {{-- UNHIDDEN--}} {{-- @endif--}}

{{-- --}}{{-- end--}} {{--
--}} {{-- --}} {{-- show lecturer--}} {{-- --}} {{-- --}} {{-- --}}
All Active Batches
@foreach($batch as $row) @if($row->status =="Active") @endif @endforeach
SL Client Name Batch Name Assign Date Valid Till ACTION
{{ $row->id}} {{ $row->client_name}} {{ $row->batch_name }} {{ $row->assign_date}} {{ $row->valid_till}} Deactivate Edit {{-- @if($row->switch =="new")--}} {{-- START VOTE--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- PUBLISH RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="finished")--}} {{-- VIEW RESULT--}} {{-- @endif--}} {{-- @if($row->switch =="published")--}} {{-- UNDO PUBLISH--}} {{-- @endif--}}
@endsection