@extends('layouts.app') @section('css') {{-- css --}} @endsection @section('title', 'User Management') @section('breadcrumb') @endsection @section('content')
User Management
@if(Session::has('success_msg')) @endif @if(Session::has('error_msg')) @endif @foreach ($users as $key => $val ) @endforeach
Name phone email D.O.B. Role Actions
{{ $val->name }} {{ $val->phone }} {{ $val->email }} {{ date('d M Y', strtotime($val->dob)) }} {{ $val->roles[0]->name ?? '' }}
@endsection @section('js') {{-- js --}} {{--End js --}} @endsection