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