@extends("layouts.dashboard.app") @section("page-nav-title")

App Users

Control and view all App Users

@endsection @section("content") @include("layouts.main-parts.page-message")
@foreach($users as $user) @endforeach
#ID First name Last name Phone number Is Logged in Type Branch Name Status Control
{{$user->id}} {{$user->first_name}} {{$user->last_name}} {{$user->MobileNumber}} {{$user->is_logged_in ? "Yes" : "No"}}
{{$user->VendorBranch !=null ? $user->VendorBranch->Branch ? $user->VendorBranch->Branch->store_name : "no branch for this user" :"no branch for this user"}}
id)}}" method="post" id="delete{{$user->id}}" style="display: none">@csrf @method("delete")
@endsection @section("scripts") @endsection