@extends('adminlte::page') @section('content')

Sub Admins

List Of Sub Admins

@if(session('success')) @endif @if(session('error')) @endif
@if(isset($subAdmins)) @foreach($subAdmins as $all) @endforeach @endif
ID Name Role Phone Email Status Actions
{{$all['id']}} {!!$all['name']!!} {{ $all->getRoleNames()->first() ?? 'No Role' }} {{ !empty($all['phone']) ? $all['phone'] : '' }} {{ !empty($all['email']) ? $all['email'] : '' }} @if($all['status'] == 1) Active @else Inactive @endif
        
ID Name Role Phone Email Status Actions
{{-- make prefill assignments available to JS --}}
@stop @section('js') @include('admin.affiliated-clubs.scripts.index') @stop