@extends('admin.layout')
@section('title','Batch list')
@section('page-css')
@stop
@section('content')
No. |
Name |
From Question |
To Question |
Status |
Action |
@if(count($batches)>0)
@foreach($batches as $key=>$row)
{{$key+1}} |
{{$row->name}} |
{{$row->from_question}} |
{{$row->to_question}} |
@if($row->is_active=='Y')
Active
@else
De Active
@endif
|
|
@endforeach
@endif
@stop
@section('page-js')
@stop