@include('weadmin.includes.data_table_header')
{!! Form::open(['route' => $base_route.'.bulk-action', 'id' => 'bulk_action_form']) !!} {{----}} @if (isset($data['rows']) && $data['rows']->count() > 0) {!! Form::open(['route' => $base_route.'.bulk-action', 'id' => 'bulk_action_form']) !!} @foreach($data['rows'] as $row) @endforeach {!! Form::close() !!} @else @endif
Programme RegNo. Name Reg.Date Status
  {!! Form::text('title', request('title'), ['class' => 'form-control border-form', 'placeholder' => 'Title']) !!} {!! Form::text('reg_date_start', request('reg_date_start'), ['class' => 'input-medium date-picker', 'placeholder' => 'From']) !!}   To   {!! Form::text('reg_date_end', request('reg_date_end'), ['class' => 'input-medium date-picker', 'placeholder' => 'To']) !!} {!! Form::select('status', ['all' => 'All', 'active' => 'Active', 'in-active' => 'Inactive'], request('status'), ['class' => 'from-control']) !!}
{{ ViewHelper::getProgrammeById($row->registration_programmes_id) }} {{ $row->reg_no }}
{{ $row->name }}
{{ \Carbon\Carbon::parse($row->updated_at)->format('d M, Y') }}
{!! $data['rows']->appends($data['filter_query'])->links() !!}
No data fount.
{!! Form::close() !!}