@extends('layouts.default_module') @section('module_name') List of Skill Development Advisor @stop @section('table-properties') width="400px" style="table-layout:fixed;" {{-- @endsection --}} @section('table') {!! Form::open(['method' => 'get', 'url' => ['admin/skilladvisor'], 'files' => true]) !!} @include('admin.advisor.partial.searchfilters') {!! Form::close() !!}
S.No.
Name
Email
Phone No
Status
@foreach ($advisor as $key => $ad)
{!! $key + 1 !!}
{!! $ad->name !!}
{!! $ad->email !!}
{!! $ad->phone_no !!}
@if ($ad->status == 'pending') Pending @else Approve @endif @section('pagination') {!! $advisor->render() !!} @endsection @endforeach @stop