cleaned up the table views to fix alignments

This commit is contained in:
Nabeel Shahzad
2017-07-13 22:10:46 -05:00
parent fc6253b46f
commit 29ec733838
7 changed files with 39 additions and 41 deletions

View File

@@ -4,7 +4,7 @@
<th>Name</th>
<th>Registration</th>
<th style="text-align: center;">Active</th>
<th style="text-align: center;">Actions</th>
<th style="text-align: right;">Actions</th>
</thead>
<tbody>
@foreach($aircraft as $ac)
@@ -24,10 +24,10 @@
<i class="fa fa-{{$ac->active == 1?"check":""}}-square-o" aria-hidden="true"
style="color: {{$ac->active==1?"darkgreen":"darkred"}};font-size:20px;"></i>
</td>
<td style="width: 10%; text-align: center;" class="form-inline">
<td style="width: 10%; text-align: right;" class="form-inline">
{!! Form::open(['route' => ['admin.aircraft.destroy', $ac->id], 'method' => 'delete']) !!}
<div class='btn-group'>
<a href="{!! route('admin.aircraft.show', [$ac->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>
{{--<a href="{!! route('admin.aircraft.show', [$ac->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-eye-open"></i></a>--}}
<a href="{!! route('admin.aircraft.edit', [$ac->id]) !!}" class='btn btn-default btn-xs'><i class="glyphicon glyphicon-edit"></i></a>
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>', ['type' => 'submit', 'class' => 'btn btn-danger btn-xs', 'onclick' => "return confirm('Are you sure?')"]) !!}
</div>