mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Added some code for reminders but most of its commented out.
This commit is contained in:
@@ -14,6 +14,7 @@
|
||||
<ul class="nav navbar-top-links navbar-right">
|
||||
|
||||
<!-- reminders -->
|
||||
{{--
|
||||
@if(count($reminders) > 0)
|
||||
<li class="dropdown">
|
||||
<a class="dropdown-toggle" data-toggle="dropdown" href="#">
|
||||
@@ -37,6 +38,7 @@
|
||||
<!-- /.dropdown-alerts -->
|
||||
</li>
|
||||
@endif
|
||||
--}}
|
||||
<!-- /.dropdown -->
|
||||
|
||||
<li class="dropdown">
|
||||
|
||||
15
app/views/reminders/show.blade.php
Normal file
15
app/views/reminders/show.blade.php
Normal file
@@ -0,0 +1,15 @@
|
||||
@extends('layouts.default')
|
||||
@section('content')
|
||||
<div class="row">
|
||||
<div class="col-lg-6 col-md-6 col-sm-12">
|
||||
<div class="panel panel-default">
|
||||
<div class="panel-heading">
|
||||
Something
|
||||
</div>
|
||||
<div class="panel-body">
|
||||
{{$reminder->data->text}}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@stop
|
||||
Reference in New Issue
Block a user