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

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

added fileTypes controller, notifications, excel export, edited views

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