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/dashboard/departments/index.blade.php

    r6b95845 rc6b84df  
    1616            <ol class="breadcrumb">
    1717                <li class="breadcrumb-item">
    18                     <a href="{{ url('dashboard/departments') }}">Departments</a>
     18                    <a href="{{ url('/') }}">Dashboard</a>
    1919                </li>
    2020                <li class="breadcrumb-item active" aria-current="page">Departments</li>
     
    2424            <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">
    2525                Add department
     26            </a>
     27            <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white">
     28                <i class="fa fa-download pr-1"></i> Download files
    2629            </a>
    2730        </div>
     
    4144                                <th>Name</th>
    4245                                <th>Code</th>
     46                                <th>Folders</th>
    4347                                <th>Created by</th>
    4448                                <th>Created at</th>
     
    5559                                    <td>{{ $department->name }}</td>
    5660                                    <td>{{ $department->code }}</td>
     61                                    <td>{{ $department->folder->count() }}</td>
    5762                                    <td>{{ $department->getCreatedByName() }}</td>
    5863                                    <td>{{ date('d.m.Y - H:i', strtotime($department->created_at)) }}</td>
     
    6368                                    @endif
    6469                                    <!-- Trigger -->
    65                                     <td>{{ $department->location }}
    66                                             <button class="btn btn-sm btn-primary text-white" data-clipboard-target="#copy_{{ $department->id }}"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
     70                                    <td><button data-clipboard-text="{{$department->location}}" class="btn btn-sm btn-primary text-white" data-toggle="tooltip" data-placement="right" title="{{$department->location}}"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
    6771                                                    <path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/>
    6872                                                    <path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/>
    6973                                                </svg></button>
    70                                         <span type="hidden" id="copy_{{$department->id}}"></span>
    7174                                    </td>
    7275                                    <td>
    7376                                        <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$department->id}}" title="Edit">
    7477                                            <i class="ti-pencil"></i>
     78                                        </a>
     79                                        <a href="{{ route("dashboard.departments.downloadDepartment", ['id' => $department->id]) }}" class="text-danger ml-2"title="Delete">
     80                                            <i class="ti-download"></i>
    7581                                        </a>
    7682                                        <a href="javascript:void(0)" class="text-danger ml-2" data-toggle="modal" data-target="#deleteModal_{{$department->id}}" title="Delete">
     
    9399                                                    @method('DELETE')
    94100                                                    <p>Are you sure you want to delete department {{$department->name}} with code: {{$department->code}}?</p>
    95                                                     <p>Number of documents associated: {{$department->document()->count()}}</p>
     101                                                    <p>Number of documents associated: <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" class="text-linkedin">{{$department->folder()->count()}}</a></p>
    96102                                                    <div class="modal-footer">
    97103                                                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
     
    133139                                                        </div>
    134140                                                    </div>
    135                                                     <input type="submit" value="Save changes" class="btn btn-primary pull-right m-10">
     141                                                    <br/>
     142                                                    <div class="modal-footer">
     143                                                        <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
     144                                                        </button>
     145                                                        <button type="submit" class="btn btn-primary">Save changes</button>
     146                                                    </div>
    136147                                                </form>
    137148                                            </div>
     
    168179                                                    </div>
    169180                                                </div>
    170                                                 <input type="submit" value="Save changes" class="submitBtn btn btn-primary pull-right m-10">
     181                                                <br/>
     182                                                <div class="modal-footer">
     183                                                    <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
     184                                                    </button>
     185                                                    <button type="submit" class="btn btn-primary">Save changes</button>
     186                                                </div>
    171187                                            </form>
    172188                                        </div>
     
    187203
    188204@section('script')
     205
     206    @yield('script')
     207
    189208    <script src="{{ url('assets/js/examples/pages/user-list.js') }}"></script>
    190209    <!-- Datatable -->
Note: See TracChangeset for help on using the changeset viewer.