Changeset aab55f4 for resources/views/dashboard/departments
- Timestamp:
- 10/26/21 22:58:47 (3 years ago)
- Branches:
- develop, master
- Children:
- 68b1a22
- Parents:
- cbb901a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/departments/index.blade.php
rcbb901a raab55f4 20 20 <div class="dropdown"> 21 21 @if(auth()->user()->hasPermission('manage_all_departments')) 22 < buttondata-toggle="modal" data-target="#createModal" class="btn btn-primary text-white">23 <i class="fa fa-plus pr-1"></i>New24 </ button>22 <a href="javascript:void(0)" data-toggle="modal" data-target="#createModal" class="btn btn-primary text-white"> 23 New 24 </a> 25 25 @endif 26 26 27 27 @if(auth()->user()->hasPermission('download_data')) 28 28 <a href="{{ route("dashboard.departments.downloadAll") }}" class="btn btn-danger text-white"> 29 <i class="fa fa-download pr-1"></i>Download29 Download 30 30 </a> 31 31 @endif 32 32 @if(auth()->user()->hasPermission('export_data')) 33 33 <a href="{{ route('dashboard.departments.export') }}" class="btn btn-success text-white"> 34 <i class="fa fa-table pr-1"></i>Export</a>34 Export</a> 35 35 @endif 36 36 </div>
Note:
See TracChangeset
for help on using the changeset viewer.