Ignore:
Timestamp:
10/21/21 23:45:59 (3 years ago)
Author:
beratkjufliju <kufliju@…>
Branches:
develop, master
Children:
4b7e2d3
Parents:
6b95845
Message:

added fileTypes controller, notifications, excel export, edited views

File:
1 edited

Legend:

Unmodified
Added
Removed
  • resources/views/layouts/app.blade.php

    r6b95845 rc6b84df  
    1717<!-- App styles -->
    1818    <link rel="stylesheet" href="{{ url('assets/css/app.min.css') }}" type="text/css">
     19    <link rel="stylesheet" href="{{ url('vendors/lightbox/magnific-popup.css') }}" type="text/css">
     20
    1921</head>
    2022<body @if (trim($__env->yieldContent('bodyClass'))) class="@yield('bodyClass')" @endif>
     
    121123                    <!-- end::header fullscreen -->
    122124
     125                    <!-- begin::header notification dropdown -->
     126                    <li class="nav-item dropdown">
     127                    <div class="dropdown dropdown-notifications-wrapper dropdown-menu-right dropdown-menu-big">
     128                        <a href="javascript:void(0)" class="nav-link dropdown-notifications-unread icon" data-toggle="dropdown">
     129                            <i data-feather="bell"></i>
     130                            <span class="nav-unread"></span>
     131                        </a>
     132                        <div class="dropdown-menu dropdown-notifications dropdown-menu-right dropdown-menu-big">
     133                            <div class="bg-dark p-4 text-center d-flex justify-content-between align-items-center">
     134                                <h5 class="mb-0">Notifications</h5>
     135                            </div>
     136                            <div class="p-4 text-center align-items-center">
     137                            <p class='text-center unreadNotificationsInfo'>No unread notifications</p>
     138                            </div>
     139                            <div class="dropdown-divider"></div>
     140                            <a href="{{ route("dashboard.notifications.index") }}" class="dropdown-item text-center text-muted-dark">See all</a>
     141                        </div>
     142                    </div>
     143                    </li>
     144
     145{{--                    </li>--}}
     146                    <!-- end::header notification dropdown -->
     147
    123148                    <!-- begin::user menu -->
    124149                    <li class="nav-item dropdown">
     
    155180                    <li>
    156181                        <a href="{{ route("dashboard.index") }}" class="nav-link {{ request()->is('dashboard') ? 'active' : '' }}" data-toggle="tooltip"
    157                            data-placement="right" title="Pages">
    158                             <i data-feather="copy"></i>
     182                           data-placement="right" title="Dashboard">
     183                            <i data-feather="home"></i>
    159184                        </a>
    160185                    </li>
     
    171196                            <a href="{{route("dashboard.departments.index")}}" data-toggle="tooltip"
    172197                               data-placement="right" title="Departments">
    173                                 <i data-feather="layers"></i>
    174                             </a>
    175                         </li>
    176                     @endif
    177                     @if(auth()->user()->hasPermission("manage_all_documents"))
    178                         <li>
    179                             <a href="{{route("dashboard.documents.index")}}" data-toggle="tooltip"
    180                                data-placement="right" title="Documents">
     198                                <i data-feather="grid"></i>
     199                            </a>
     200                        </li>
     201                    @endif
     202                    @if(auth()->user()->hasPermission("manage_all_folders"))
     203                        <li>
     204                            <a href="{{route("dashboard.folders.index")}}" data-toggle="tooltip"
     205                               data-placement="right" title="Folders">
     206                                <i data-feather="folder"></i>
     207                            </a>
     208                        </li>
     209                    @endif
     210                    @if(auth()->user()->hasPermission("manage_all_files"))
     211                        <li>
     212                            <a href="{{route("dashboard.files.index")}}" data-toggle="tooltip"
     213                               data-placement="right" title="Files">
    181214                                <i data-feather="file-text"></i>
    182215                            </a>
     
    220253    var clipboard = new ClipboardJS('.btn');
    221254</script>
     255<script src="{{ url('vendors/lightbox/jquery.magnific-popup.min.js') }}"></script>
     256
     257<!-- Isotope -->
     258<script src="{{ url('vendors/jquery.isotope.min.js') }}"></script>
     259
     260<script src="{{ url('assets/js/examples/pages/gallery.js') }}"></script>
    222261@yield('script')
     262
    223263
    224264@include("layouts.alert")
Note: See TracChangeset for help on using the changeset viewer.