@extends('admin.dashboard') @section('title', 'All Users') @section('content')

All Users

@foreach($user as $admin) @endforeach
# Name Email Phone No Action
{{ $loop->iteration }} {{ $admin->fname.' '.$admin->lname}} {{ $admin->email}} {{ $admin->mobile}}
@endsection @section('javascript') @endsection