@extends('layouts.default') @section('title','Employees List') @section('new_button') add Create New Employee @endsection @section('content')
@foreach($list as $li) @endforeach @if(count($list) == 0) @endif
Name Email Phone Actions
{{ ucwords($li->name) }} {{ $li->email }} {{ $li->mobile }} create {{ Form::open(['url'=>'user_change_status', 'mehtod'=>'post']) }} {{ Form::hidden('user_id', $li->id) }} @if($li->active == 1) @else @endif {{ Form::close() }}
No Data

In Job Consultants

Consultants Name Email Phone Actions
@endsection