@extends('layouts.app') @section('content') @include('layouts.navbars.auth.topnav', ['title' => 'User Management']) Your Page Title
Users
Add Users
@if (!$resultsFound)

No results found. Showing all users:

@endif
@foreach($users as $user) @endforeach
Id name Email Action
{{ $user->id }} {{ $user->username }} {{ $user->email }}
@endsection