@extends('admin.layout.index') @push('css-head') @endpush @section('content')
Name: {{ $admin->name }}
Email: {{ $admin->email }}
Role: {{ $admin->roles->first()?$admin->roles->first()->name:'--' }}
Status: @if($admin->status == 1) {{ 'On' }} @else {{ 'Off' }} @endif
Created at: {{date('F j, y h:i a', strtotime($admin->created_at))}}
@endsection @push('scripts') @endpush