@extends('adminlte::page') @section('title', 'Users') @section('content_header')

@endsection @section('content')

Users

Create User
@foreach ($users as $user) @endforeach
Name Email Status Phone Number Actions
{{ $user->name }} {{ $user->email }} @if ($user->status == 1) Active @else Inactive @endif {{ $user->phone_number }} Edit
@csrf @method('DELETE')
@endsection @section('js') @endsection