Skip to content

Commit

Permalink
+ Sample app UI shell
Browse files Browse the repository at this point in the history
  • Loading branch information
tgmcguire committed Jan 19, 2022
1 parent 6f08a38 commit 0cf7c67
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
16 changes: 16 additions & 0 deletions resources/views/sample.blade.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
@extends('layouts.app')

@section('content')
<div class="container my-5">
<div class="row">
<div class="col-md-6">
<div class="card">
<div class="card-body">
<h1>Welcome! <i class="fa fa-rocket"></i></h1>
<p>Lorem, ipsum dolor sit amet consectetur adipisicing elit. Expedita, nisi. Nam sunt sapiente fuga repellendus, facere, autem iure, consequuntur ea hic cumque distinctio perferendis nesciunt, aperiam recusandae quas expedita! Corporis!</p>
</div>
</div>
</div>
</div>
</div>
@endsection
2 changes: 2 additions & 0 deletions routes/web.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,5 @@
Route::get('/', function () {
return view('welcome');
});

Route::view('/sample', 'sample');

0 comments on commit 0cf7c67

Please sign in to comment.