@extends('layout.admin_layout') @section('title', 'admin-dashboard') @section('body') @section('header', 'Users') @section('badge') @endsection

User list

@forelse ($users as $user) @empty @endforelse
# No Name Email Phone Action
{{ $loop->iteration }} {{ $user->name }} {{ $user->email }} {{ $user->mobile }} View Edit Delete
No data found.
@endsection