Last change
on this file since ff9da8b was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.0 KB
|
Line | |
---|
1 | @extends("layouts.dashboard")
|
---|
2 |
|
---|
3 | @section("title", "Notifications - Dashboard | TechnoBlog")
|
---|
4 |
|
---|
5 | @section("dashboard_content")
|
---|
6 |
|
---|
7 | <div class="my-3 my-md-5">
|
---|
8 |
|
---|
9 | <div class="container">
|
---|
10 |
|
---|
11 | <div class="page-header">
|
---|
12 | <h1 class="page-title">Notifications</h1>
|
---|
13 | </div>
|
---|
14 |
|
---|
15 | <div class="row">
|
---|
16 |
|
---|
17 | <div class="col-sm-12">
|
---|
18 | <div class="card">
|
---|
19 |
|
---|
20 | <div class="card-header">
|
---|
21 | <h3 class="card-title">List of all notifications</h3>
|
---|
22 | </div>
|
---|
23 |
|
---|
24 | <div class="table-responsive pt-5 pb-5">
|
---|
25 |
|
---|
26 | <table id="dttable" class="table" style="width:100%">
|
---|
27 | <thead>
|
---|
28 | <tr>
|
---|
29 | <th class="text-center">Message</th>
|
---|
30 | <th class="text-center">Ago</th>
|
---|
31 | </tr>
|
---|
32 | </thead>
|
---|
33 | <tbody>
|
---|
34 | @foreach ($notifications as $notification)
|
---|
35 | <tr>
|
---|
36 | <td>{{ $notification["message"] }}</td>
|
---|
37 | <td>{{ $notification["ago"] }}</td>
|
---|
38 | </tr>
|
---|
39 | @endforeach
|
---|
40 | </tbody>
|
---|
41 | </table>
|
---|
42 |
|
---|
43 | </div>
|
---|
44 |
|
---|
45 | </div>
|
---|
46 |
|
---|
47 | </div>
|
---|
48 |
|
---|
49 | </div>
|
---|
50 |
|
---|
51 | </div>
|
---|
52 |
|
---|
53 | </div>
|
---|
54 |
|
---|
55 | @endsection
|
---|
Note:
See
TracBrowser
for help on using the repository browser.