@extends('backend.admin-master') @section('style') @include('backend.partials.datatable.style-enqueue') @endsection @section('site-title') {{__('All Admins')}} @endsection @section('content')
{{__('ID')}} | {{__('Name')}} | {{__('Image')}} | {{__('Role')}} | {{__('Action')}} |
---|---|---|---|---|
{{$data->id}} | {{$data->name}} ({{$data->username}}) | @php $img = get_attachment_image_by_id($data->image,null,true); @endphp @if (!empty($img)) | @php $img_url = $img['img_url']; @endphp @endif@if(!empty($data->getRoleNames())) @foreach($data->getRoleNames() as $v) {{ $v }} @endforeach @endif |
|