Wrap date/time calls with show_datetime() #97
This commit is contained in:
parent
4fb8a1aaf9
commit
174e3d1461
@ -29,12 +29,12 @@
|
||||
<!-- Created At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('created_at', 'Created At:') !!}
|
||||
<p>{!! $airlines->created_at !!}</p>
|
||||
<p>{!! show_datetime($airlines->created_at) !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Updated At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('updated_at', 'Updated At:') !!}
|
||||
<p>{!! $airlines->updated_at !!}</p>
|
||||
<p>{!! show_datetime($airlines->updated_at) !!}</p>
|
||||
</div>
|
||||
|
||||
|
@ -19,12 +19,12 @@
|
||||
<!-- Created At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('created_at', 'Created At:') !!}
|
||||
<p>{!! $field->created_at !!}</p>
|
||||
<p>{!! show_datetime($field->created_at) !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Updated At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('updated_at', 'Updated At:') !!}
|
||||
<p>{!! $field->updated_at !!}</p>
|
||||
<p>{!! show_datetime($field->updated_at) !!}</p>
|
||||
</div>
|
||||
|
||||
|
@ -37,12 +37,12 @@
|
||||
<!-- Created At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('created_at', 'Created At:') !!}
|
||||
<p>{!! $rank->created_at !!}</p>
|
||||
<p>{!! show_datetime($rank->created_at) !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Updated At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('updated_at', 'Updated At:') !!}
|
||||
<p>{!! $rank->updated_at !!}</p>
|
||||
<p>{!! show_datetime($rank->updated_at) !!}</p>
|
||||
</div>
|
||||
|
||||
|
@ -36,12 +36,12 @@
|
||||
<!-- Created At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('created_at', 'Created At:') !!}
|
||||
<p>{!! $subfleet->created_at !!}</p>
|
||||
<p>{!! show_datetime($subfleet->created_at) !!}</p>
|
||||
</div>
|
||||
|
||||
<!-- Updated At Field -->
|
||||
<div class="form-group">
|
||||
{!! Form::label('updated_at', 'Updated At:') !!}
|
||||
<p>{!! $subfleet->updated_at !!}</p>
|
||||
<p>{!! show_datetime($subfleet->updated_at) !!}</p>
|
||||
</div>
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user