@extends('admin.layout') @section('title','Batch list') @section('page-css') @stop @section('content')

Batch List

@if(count($batches)>0) @foreach($batches as $key=>$row) @endforeach @endif
No. Name From Question To Question Status Action
{{$key+1}} {{$row->name}} {{$row->from_question}} {{$row->to_question}} @if($row->is_active=='Y') Active @else De Active @endif Edit
@stop @section('page-js') @stop