@extends('layouts.app') @section('content')
Administrators
@foreach($admins as $users) @endforeach
Name Outlet Category Role Email Action
{{@ucwords(@strtolower($users->name))}} {{@ucwords(@strtolower($users->branch))}} {{@ucwords(@strtolower($users->sales_person_category))}} {{@ucwords(@strtolower($users->role))}} {{$users->email}}
Other Users
@foreach($allusers as $user_) @endforeach
Name Branch Category Role Email Action
{{@ucwords(@strtolower($user_->name))}} {{@ucwords(@strtolower($user_->branch))}} {{@ucwords(@strtolower($user_->sales_person_category))}} {{@@ucwords(@strtolower($user_->role))}} {{$user_->email}}
@endsection