-
Notifications
You must be signed in to change notification settings - Fork 49
Welcome page
JP Barbosa edited this page Mar 11, 2016
·
4 revisions
nano resources/views/welcome.blade.php
@extends($layout)
@section('content')
<div class="jumbotron">
<h1>Laravel Apz</h1>
<p>The guide to build a Laravel 5.2 app from a to z.</p>
<p>
<a href="https://github.com/jp7internet/laravel-apz" role="button" class="btn btn-lg btn-primary">View On GitHub</a>
</p>
</div>
@endsection
nano app/Http/routes.php
Route::get('/', function () {
return view('welcome');
});
php artisan serve
open http://localhost:8000/
git add .
git commit -m "Add welcome page"
Next step: Ajax CRUD
- Setup
- Basic CRUD
- Validation
- Views
- Association
- Association Controller
- Association Views
- Basic Template
- Bootstrap
- Bootstrap CRUD
- Alerts
- Welcome Page
- Ajax CRUD
- Send Email
- Send Email Views
- Jobs Queue
- Captcha
- Async External Content
- Cached External Content
- Tests Setup
- Functional Tests
- Acceptance Tests
- Continuous Integration
- Deploy with Heroku
- Deploy with Forge
- Update README