minimal implementation of light bootstrap

This commit is contained in:
Nabeel Shahzad
2017-08-17 15:39:00 -05:00
parent 9429a23312
commit e85c660e3d
6 changed files with 37 additions and 25 deletions

View File

@@ -1,13 +1,15 @@
@extends('admin.app')
@section('content')
<section class="content-header">
<h1 class="pull-left">Flights</h1>
<h1 class="pull-right">
<a class="btn btn-primary pull-right" style="margin-top: -10px;margin-bottom: 5px" href="{!! route('admin.flights.create') !!}">Add New</a>
</h1>
</section>
<div class="content">
<div class="card">
<div class="header">
<a class="btn btn-primary pull-right" style="margin-top: -10px;margin-bottom: 5px"
href="{!! route('admin.flights.create') !!}">Add New</a>
<h4 class="title">Flights</h4>
</div>
@include('admin.flights.table')
</div>
{{--<div class="content">
<div class="clearfix"></div>
@include('flash::message')
@@ -15,9 +17,9 @@
<div class="clearfix"></div>
<div class="box box-primary">
<div class="box-body">
@include('admin.flights.table')
</div>
</div>
</div>
</div>--}}
@endsection

View File

@@ -1,4 +1,5 @@
<table class="table table-responsive" id="flights-table">
<div class="content table-responsive table-full-width">
<table class="table table-hover table-striped" id="flights-table">
<thead>
<th>Flight #</th>
<th>Dep</th>
@@ -49,3 +50,4 @@
@endforeach
</tbody>
</table>
</div>