Fix up the PIREP field CRUD code
This commit is contained in:
30
resources/views/admin/pirepfields/show_fields.blade.php
Normal file
30
resources/views/admin/pirepfields/show_fields.blade.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<!-- Id Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('id', 'Id:') !!}
|
||||
<p>{!! $field->id !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Name Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('name', 'Name:') !!}
|
||||
<p>{!! $field->name !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Required Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('required', 'Required:') !!}
|
||||
<p>{!! $field->required !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Created At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('created_at', 'Created At:') !!}
|
||||
<p>{!! $field->created_at !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Updated At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('updated_at', 'Updated At:') !!}
|
||||
<p>{!! $field->updated_at !!}</p>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user