Changeset 0df7a93 for resources/views/dashboard/settings/index.blade.php
- Timestamp:
- 10/24/21 20:55:11 (3 years ago)
- Branches:
- develop, master
- Children:
- 7043def
- Parents:
- e0d3f94
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
resources/views/dashboard/settings/index.blade.php
re0d3f94 r0df7a93 24 24 <a class="nav-link {{$active_tab == 'account' ? 'active' : ""}}" id="account-tab" data-toggle="pill" href="#account" role="tab" aria-controls="account" aria-selected="true">Account</a> 25 25 <a class="nav-link {{$active_tab == 'security' ? 'active' : ""}}" id="security-tab" data-toggle="pill" href="#security" role="tab" aria-controls="security" aria-selected="false">Security</a> 26 @if(auth()->user()->hasPermission('validation_data')) 26 27 <a class="nav-link {{$active_tab == 'file-types' ? 'active' : ""}}" id="file-types-tab" data-toggle="pill" href="#file-types" role="tab" aria-controls="file-types" aria-selected="false">File validation</a> 28 @endif 27 29 </div> 28 30 </div> … … 233 235 </div> 234 236 <div class="tab-pane {{$active_tab == 'file-types' ? 'active' : ""}}" id="file-types" role="tabpanel" aria-labelledby="file-types-tab"> 235 237 @if(auth()->user()->hasPermission('validation_data')) 236 238 <div class="card"> 237 239 <div class="card-body"> … … 259 261 </div> 260 262 </div> 261 263 @endif 262 264 </div> 263 265 </div>
Note:
See TracChangeset
for help on using the changeset viewer.