Skip to content

Commit

Permalink
layout modified
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwebwiz committed Nov 23, 2017
1 parent fd5e74a commit 64735c6
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 7 deletions.
21 changes: 15 additions & 6 deletions resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,28 @@
<h4>Dashboard</h4>
</div>
<div class="panel-body">
<div class="container">
{{-- <div class="container"> --}}
<div class="row">
<div class="col-md-6 col-sm-6">
<a href="{{ url('trackings') }}">
<div class="panel panel-primary">
<div class="panel-heading"></div>
<div class="panel-body"></div>
<div class="panel panel-primary text-center">
<div class="panel-heading">ALL TRACKINGS</div>
<div class="panel-body"><h1>{{ DB::table('trackings')->count() }}</h1></div>
</div>
</a>
</div>
<div class="col-md-6 col-sm-6">
<a href="{{ url('trackings/new') }}">
<div class="panel panel-default text-center">
<div class="panel-heading">ADD NEW TRACKING</div>
<div class="panel-body">
<h1><i class="glyphicon glyphicon-plus"></i></h1>
</div>
</div>
</a>
</div>
<div class="col-md-6 col-sm-6"></div>
</div>
</div>
{{-- </div> --}}
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<!-- insert the image for logo here using the format below: -->
<!-- <img src="{{ asset('images/logo.png') }}"> -->
<!-- the "images/logo.png" specify the file path which is located in public/images/logo.png -->
{{ config('app.name', 'Laravel') }}
Trackr
</a>
</div>

Expand Down

0 comments on commit 64735c6

Please sign in to comment.