Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 97cb181

Browse files
committed
add logs empty page
1 parent 1372e51 commit 97cb181

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

resources/views/logs.blade.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
@extends('lucid::layout')
2+
3+
@section('content')
4+
5+
<div class="page-content">
6+
<div class="mdl-grid">
7+
<div class="dl-cell mdl-cell--12-col text-center">
8+
Logs will show up here
9+
</div>
10+
</div>
11+
</div>
12+
@stop

src/Http/routes.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
return view('lucid::features');
2121
});
2222

23+
Route::get('/dashboard/logs', function () {
24+
return view('lucid::logs');
25+
});
26+
2327
// Data Routes
2428
Route::post('/search', function () {
2529
// search for the query in features and jobs

0 commit comments

Comments
 (0)