Implemented migration procedure.

This commit is contained in:
James Cole
2014-06-30 10:47:14 +02:00
parent ecadf005a8
commit 39dd382e87
9 changed files with 531 additions and 34 deletions

View File

@@ -1,16 +1,29 @@
<html>
<head>
<title>Bla bla</title>
</head>
<body>
{{App::environment()}}
@if(Auth::check())
logged in!
@endif
@extends('layouts.default')
@section('content')
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h1>Firefly<br/>
<small>What's playing?</small>
</h1>
</div>
</div>
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<h2>Accounts</h2>
<div id="accounts">
</div>
<p><small>[settings]</small></p>
</div>
</div>
<br />
<a href="{{route('logout')}}">logout!</a>
</body>
</html>
<div class="row">
<div class="col-lg-6 col-md-6 col-sm-12">
<h3>Expenses</h3>
</div>
<div class="col-lg-6 col-md-6 col-sm-12">
<h3>Budgets</h3>
</div>
</div>
@stop
@section('scripts')
@stop