@extends('layouts.app') @section('content')
@if(auth()->user()->role == "Administrator")
@foreach($branches as $branches) @endforeach
Outlet Outlet Code Action
{{$branches->branch_name}} {{$branches->branch_code}}
@csrf
@else
Outlet Description Action
{{@strtoupper($branch_officer->branch_name)}} {{$branch_officer->branch_description}}
@csrf
@endif @if(auth()->user()->role == "Administrator")
USER REPORT

@foreach($all_users as $users) @endforeach
Name Category email outlet Action
{{@strtoupper($users->name)}} {{@strtoupper($users->sales_person_category)}} {{$users->email}} {{@strtoupper($users->branch)}}
@else
{{@strtoupper(auth()->user()->branch)}} USERS REPORT
@foreach($branch_user as $users) @endforeach
Name Category Email Branch Action
{{@strtoupper($users->name)}} {{$users->sales_person_category}} {{$users->email}} {{@strtoupper($users->branch)}}
@endif
@endsection