{!! Form::label('lblName', 'Name:'); !!}
{{$permission->name}}
{!! Form::label('lblGroup', 'Group:'); !!}
{{$permission->group}}
{!! Form::label('lblCreatedBy', 'Created By:'); !!}
{{(isset($permission->created_by_name)) ? $permission->created_by_name->name : '—'}}
{!! Form::label('lblCreatedAt', 'Created At:'); !!}
{{date('Y-m-d - H:i:s', strtotime($permission->created_at))}}
{!! Form::label('lblUpdatedBy', 'Updated By:'); !!}
{{(isset($permission->updated_by_name)) ? $permission->updated_by_name->name : '—'}}
{!! Form::label('lblUpdatedAt', 'Updated At:'); !!}
{{date('Y-m-d - H:i:s', strtotime($permission->updated_at))}}