source: resources/views/dashboard/notifications/index.blade.php@ a8346eb

develop
Last change on this file since a8346eb was 4b7e2d3, checked in by beratkjufliju <kufliju@…>, 3 years ago

bug fixes, edited export, added fileSeeder for DB testing

  • Property mode set to 100644
File size: 2.2 KB
Line 
1@extends('layouts.app')
2
3@section("title", "SaveSpace - Users")
4
5@section('head')
6 <!-- Datatable -->
7 <link rel="stylesheet" href="{{ url('vendors/dataTable/dataTables.min.css') }}" type="text/css">
8
9@endsection
10
11@section('content')
12
13{{-- <div class="page-header justify-content-between">--}}
14{{-- <nav aria-label="breadcrumb" class="d-flex align-items-start">--}}
15{{-- <ol class="breadcrumb">--}}
16{{-- <li class="breadcrumb-item">--}}
17{{-- <a href="{{ url('dashboard.users') }}">Users</a>--}}
18{{-- </li>--}}
19{{-- <li class="breadcrumb-item active" aria-current="page">User List</li>--}}
20{{-- </ol>--}}
21{{-- </nav>--}}
22{{-- <div class="dropdown">--}}
23{{-- <a href="{{ route("dashboard.users.create") }}" class="btn btn-primary text-white">--}}
24{{-- Add user--}}
25{{-- </a>--}}
26{{-- </div>--}}
27{{-- </div>--}}
28
29 <div class="row">
30 <div class="col-md-12">
31 <div class="card">
32 <div class="card-body">
33 <div class="table-responsive">
34 <table id="user-list" class="table table-lg">
35 <thead>
36 <tr>
37 <th></th>
38 <th>Message</th>
39 <th>Ago</th>
40 </tr>
41 </thead>
42 <tbody>
43 @foreach($notifications as $notification)
44 <tr>
45 <td></td>
46 <td>{{$notification["message"]}}</td>
47 <td>{{$notification["ago"]}}</td>
48
49
50 </tr>
51 @endforeach
52 </tbody>
53 </table>
54 </div>
55 </div>
56 </div>
57 </div>
58 </div>
59
60@endsection
61
62@section('script')
63 <script src="{{ url('assets/js/examples/pages/user-list.js') }}"></script>
64 <!-- Datatable -->
65 <script src="{{ url('vendors/dataTable/dataTables.min.js') }}"></script>
66@endsection
Note: See TracBrowser for help on using the repository browser.