source: resources/views/dashboard/departments/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: 13.5 KB
Line 
1@extends('layouts.app')
2
3@section("title", "SaveSpace - Departments")
4
5@section('pageTitle', 'Departments')
6
7@section('head')
8 <!-- Datatable -->
9 <link rel="stylesheet" href="{{ url('vendors/dataTable/dataTables.min.css') }}" type="text/css">
10@endsection
11
12@section('content')
13
14 <div class="page-header justify-content-between">
15 <nav aria-label="breadcrumb" class="d-flex align-items-start">
16 <ol class="breadcrumb">
17 <li class="breadcrumb-item">
18 <a href="{{ url('/') }}">Dashboard</a>
19 </li>
20 <li class="breadcrumb-item active" aria-current="page">Departments</li>
21 </ol>
22 </nav>
23 <div class="dropdown">
24 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">
25 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
29 </a>
30 </div>
31 </div>
32
33 <div class="row">
34 <div class="col-md-12">
35 <div class="card">
36 <div class="card-body">
37 <div class="table-responsive">
38 <table id="user-list" class="table table-lg">
39 <thead>
40 <tr>
41 <th>
42 </th>
43 <th>ID</th>
44 <th>Name</th>
45 <th>Code</th>
46 <th>Folders</th>
47 <th>Created by</th>
48 <th>Created at</th>
49 <th>Updated at</th>
50 <th>Directory</th>
51 <th>Actions</th>
52 </tr>
53 </thead>
54 <tbody>
55 @foreach($departments as $department)
56 <tr>
57 <td></td>
58 <td>{{$department->id }}</td>
59 <td>{{ $department->name }}</td>
60 <td>{{ $department->code }}</td>
61 <td>{{ $department->folder->count() }}</td>
62 <td>{{ $department->getCreatedByName() }}</td>
63 <td>{{ date('d.m.Y - H:i', strtotime($department->created_at)) }}</td>
64 @if($department->updated_at==NULL)
65 <td>/</td>
66 @else
67 <td>{{ date('d.m.Y - H:i', strtotime($department->updated_at)) }}</td>
68 @endif
69 <!-- Trigger -->
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">
71 <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"/>
72 <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"/>
73 </svg></button>
74 </td>
75 <td>
76 <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$department->id}}" title="Edit">
77 <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>
81 </a>
82 <a href="javascript:void(0)" class="text-danger ml-2" data-toggle="modal" data-target="#deleteModal_{{$department->id}}" title="Delete">
83 <i class="ti-trash"></i>
84 </a>
85 </td>
86 </tr>
87 <div class="modal fade" id="deleteModal_{{$department->id}}" tabindex="-1" role="dialog" aria-hidden="true">
88 <div class="modal-dialog modal-dialog-centered" role="document">
89 <div class="modal-content">
90 <div class="modal-header">
91 <h5 class="modal-title" id="exampleModalCenterTitle">Delete confirmation</h5>
92 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
93 <i class="ti-close"></i>
94 </button>
95 </div>
96 <div class="modal-body">
97 <form action="{{ route("dashboard.departments.destroy", $department->id) }}" method="POST">
98 @csrf
99 @method('DELETE')
100 <p>Are you sure you want to delete department {{$department->name}} with code: {{$department->code}}?</p>
101 <p>Number of documents associated: <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}" class="text-linkedin">{{$department->folder()->count()}}</a></p>
102 <div class="modal-footer">
103 <button type="button" class="btn btn-secondary" data-dismiss="modal">Close
104 </button>
105 <button type="submit" class="btn btn-primary">Save changes</button>
106 </div>
107 </form>
108 </div>
109
110 </div>
111 </div>
112 </div>
113
114 <div class="modal fade" id="editModal_{{$department->id}}" tabindex="-1" role="dialog" aria-hidden="true">
115 <div class="modal-dialog modal-dialog-centered" role="document">
116 <div class="modal-content">
117 <div class="modal-header">
118 <h5 class="modal-title" id="exampleModalCenterTitle">Edit department</h5>
119 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
120 <i class="ti-close"></i>
121 </button>
122 </div>
123 <div class="modal-body">
124 <form action="{{ route("dashboard.departments.edit", ["id" =>$department->id]) }}" method="post" accept-charset="utf-8">
125 @method("patch")
126 @csrf
127 <div class="row">
128 <div class="col-md-6">
129 <div class="form-group">
130 <label class="form-label">Name</label>
131 <input type="text" name="name" value="{{ $department->name }}" minlength="2" maxlength="30" class="form-control" placeholder="Name" required>
132 </div>
133 </div>
134 <div class="col-md-6">
135 <div class="form-group">
136 <label class="form-label">Code</label>
137 <input type="text" name="code" value="{{ $department->code }}" minlength="2" maxlength="30" class="form-control" placeholder="Code" required>
138 </div>
139 </div>
140 </div>
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>
147 </form>
148 </div>
149
150 </div>
151 </div>
152 </div>
153 @endforeach
154
155 <div class="modal fade" id="createModal" tabindex="-1" role="dialog" aria-hidden="true">
156 <div class="modal-dialog modal-dialog-centered" role="document">
157 <div class="modal-content">
158 <div class="modal-header">
159 <h5 class="modal-title" id="exampleModalCenterTitle">Create department</h5>
160 <button type="button" class="close" data-dismiss="modal" aria-label="Close">
161 <i class="ti-close"></i>
162 </button>
163 </div>
164 <div class="modal-body">
165 <form action="{{ route("dashboard.departments.store") }}" method="post" accept-charset="utf-8">
166 @csrf
167 <div class="row">
168 <div class="col-md-6">
169 <div class="form-group">
170 <label>Name</label>
171 <input type="text" name="name" value="{{ old('name') }}" minlength="2" maxlength="30" class="form-control" placeholder="Name" required>
172 </div>
173 </div>
174 <div class="col-md-6">
175 <div class="form-group">
176 <label>Code</label>
177 <input type="text" name="code" value="{{ old('code') }}" minlength="2" maxlength="30" class="form-control" placeholder="Code" required>
178 </div>
179 </div>
180 </div>
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>
187 </form>
188 </div>
189
190 </div>
191 </div>
192 </div>
193
194 </tbody>
195 </table>
196 </div>
197 </div>
198 </div>
199 </div>
200 </div>
201
202@endsection
203
204@section('script')
205
206 @yield('script')
207
208 <script src="{{ url('assets/js/examples/pages/user-list.js') }}"></script>
209 <!-- Datatable -->
210 <script src="{{ url('vendors/dataTable/dataTables.min.js') }}"></script>
211@endsection
Note: See TracBrowser for help on using the repository browser.