25 lines
532 B
PHP
25 lines
532 B
PHP
<!-- Id Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('id', 'Id:') !!}
|
|
<p>{{ $role->id }}</p>
|
|
</div>
|
|
|
|
<!-- Role Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('role', 'Role:') !!}
|
|
<p>{{ $role->role }}</p>
|
|
</div>
|
|
|
|
<!-- Created At Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('created_at', 'Created At:') !!}
|
|
<p>{{ $role->created_at }}</p>
|
|
</div>
|
|
|
|
<!-- Updated At Field -->
|
|
<div class="form-group">
|
|
{!! Form::label('updated_at', 'Updated At:') !!}
|
|
<p>{{ $role->updated_at }}</p>
|
|
</div>
|
|
|