@extends('layouts.app') @section('title') All User @endsection @section('description') All User is here. @endsection @section('breadcrumb')
  • All User
  • @endsection @section('content')
    @forelse ($users as $index => $user) @empty @endforelse
    # User Name User Email User Phone
    {{ $index+1 }} {{ $user->name }} {{ $user->email }} {{ $user->phone_number }}
    No data.
    @endsection