@extends('admin.layouts.master') @section('admin-user', 'active') @section('title') Admin User @endsection @push('style') @endpush @php $userr = Auth::user(); @endphp @section('content')

{{ __('Admins') }}

{{ __('Admin List') }}
@forelse ($admins as $key => $row) @empty @endforelse
Sl Name Image Email Status Role Action
Sl Name Image Email Status Role Action
{{ ++$key }} {{ $row->name }} {{ $row->name }} {{ $row->email }} $row->status == 1, 'badge-danger' => $row->status != 1 ])>{{ $row->status == '1' ? 'Active' : 'inactive'}} {{ $row->roles->pluck('name')->join(', ', ' and ') }} {{-- Edit --}} {{-- Delete --}}
User not found!
@endsection @push('script') @endpush