Wrap date/time calls with show_datetime() #97

This commit is contained in:
Nabeel Shahzad 2018-01-11 21:22:24 -06:00
parent 4fb8a1aaf9
commit 174e3d1461
4 changed files with 8 additions and 8 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>