@extends('layouts.default_module')
@section('module_name')
Users
@stop
@section('add_btn')
@stop
@section('table-properties')
width="400px" style="table-layout:fixed;"
@endsection
@section('table')
| Name |
Last Name |
Email |
Phone no |
Address |
Education |
@foreach($user as $b)
{!! ucwords($b->name ) !!} |
{!! ucwords($b->last_name ) !!} |
{!! ucwords($b->email ) !!} |
{!! ucwords($b->phone_no ) !!} |
{!! ucwords($b->address ) !!} |
{!!ucwords($b->education) !!} |
@endforeach
@section('pagination')
{!! Form::open(['method' => 'get', 'route' => ['dashboard']]) !!}
{!! Form::submit('Cancel', ['class' => 'btn btn-default btn-block btn-lg btn-parsley']) !!}
{!! Form::close() !!}
@endsection
@stop