@extends('adminlte::page') @section('title', __('clinic-staff.show.title')) @section('content_header')
@stop @section('content')
{{-- --}}
{!! __('clinic-staff.show.b_role') !!}
@php $roleId = $staff->role_id ? $staff->role_id : 1; @endphp {{ __("clinic.common.role." . $roleList[$roleId]) }}
{!! __('clinic-staff.show.b_name') !!}
{{ $staff->name }}
{!! __('clinic-staff.show.b_email') !!}
{{ $staff->email }}
{!! __('clinic-staff.show.b_last_login') !!}
{{ $staff->last_logged_in_at ? date('Y/m/d', strtotime($staff->last_logged_in_at)) : '-' }}
{!! __('clinic-staff.show.b_term_agree') !!}
{{ $staff->term_agreed_at ? date('Y/m/d', strtotime($staff->term_agreed_at)) : '-' }}


@if (\Auth::guard('clinic')->user()->isEditableRole()) {!! __('clinic-staff.show.button_go') !!} @endif
@if (\Auth::guard('clinic')->user()->isEditableRole()) @endif
@include('clinic.clinicStaff.modal.confirm_delete', ['staff' => $staff]) @stop @section('css') @stop