Skip to content

Commit

Permalink
Welcome view modified,changes made
Browse files Browse the repository at this point in the history
  • Loading branch information
iamwebwiz committed Nov 23, 2017
1 parent 99bd3d1 commit fd5e74a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
14 changes: 13 additions & 1 deletion resources/views/home.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,19 @@
<h4>Dashboard</h4>
</div>
<div class="panel-body">
Deli Deli Deli
<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>
</a>
</div>
<div class="col-md-6 col-sm-6"></div>
</div>
</div>
</div>
</div>
</div>
Expand Down
5 changes: 4 additions & 1 deletion resources/views/layouts/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@
</button>

<!-- Branding Image -->
<a class="navbar-brand" href="{{ url('/') }}">
<a class="navbar-brand" href="{{ url('/home') }}">
<!-- 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') }}
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/tracking/new.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
</div>

<div class="form-group">
<label for="geolocation" class="control-label col-sm-4">Location</label>
<label for="geolocation" class="control-label col-sm-4">Location <small>To be shown on map</small></label>
<div class="col-sm-8">
<input type="text" name="geolocation" placeholder="Location" class="form-control">
</div>
Expand Down
9 changes: 4 additions & 5 deletions resources/views/welcome.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">

<title>Laravel</title>
<title>Trackr</title>

<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Raleway:100,600" rel="stylesheet" type="text/css">
Expand Down Expand Up @@ -72,22 +72,21 @@
<a href="{{ url('/home') }}">Home</a>
@else
<a href="{{ url('/login') }}">Login</a>
<a href="{{ url('/register') }}">Register</a>
@endif
</div>
@endif

<div class="content">
<div class="title m-b-md">
Laravel
Trackr
</div>

<div class="links">
<a href="https://laravel.com/docs">Documentation</a>
<!-- <a href="https://laravel.com/docs">Documentation</a>
<a href="https://laracasts.com">Laracasts</a>
<a href="https://laravel-news.com">News</a>
<a href="https://forge.laravel.com">Forge</a>
<a href="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/laravel/laravel">GitHub</a>
<a href="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/laravel/laravel">GitHub</a> -->
</div>
</div>
</div>
Expand Down

0 comments on commit fd5e74a

Please sign in to comment.