@extends('layouts.default')
@section('title','Employees List')
@section('new_button')
{!! Form::text('search', request('search'), ['id'=>'tableSearch','class' => 'form-control input-filter input-sm', 'placeholder' => 'Search here']) !!}
search
add
Create New Employee
@endsection
@section('content')
Name |
Email |
Phone |
Actions |
@foreach($list as $li)
{{ 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() }}
|
@endforeach
@if(count($list) == 0)
No Data |
@endif
In Job Consultants
Consultants Name |
Email |
Phone |
Actions |
|
|
|
|
@endsection