Changeset 9a13901 for resources/views


Ignore:
Timestamp:
10/27/21 00:56:13 (3 years ago)
Author:
Berat Kjufliju <kufliju@…>
Branches:
develop, master
Children:
c2e9bd9
Parents:
9b4689a
Message:

bug fixes

Location:
resources/views/dashboard
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • resources/views/dashboard/departments/index.blade.php

    r9b4689a r9a13901  
    8181                                    @if(auth()->user()->hasPermission('manage_all_departments'))
    8282                                    <td>
    83                                         <a href="javascript:void(0)" class="text-secondary" data-toggle="modal" data-target="#editModal_{{$department->id}}" title="Edit">
     83                                        <a class="text-secondary" data-dismiss="modal" data-toggle="modal" href="#editModal_{{$department->id}}" title="Edit">
    8484                                            <i class="ti-pencil"></i>
    8585                                        </a>
  • resources/views/dashboard/index.blade.php

    r9b4689a r9a13901  
    294294
    295295                            <td>
    296                                 <a href="#">{{$department->name}}</a>
     296                                <a href="{{ route("dashboard.folders.index", ['id' => $department->id]) }}">{{$department->name}}</a>
    297297                            </td>
    298298                            <td>
    299                                 <a href="#">{{$department->no_of_folders}}</a>
     299                                {{$department->no_of_folders}}
    300300                            </td>
    301301                        </tr>
Note: See TracChangeset for help on using the changeset viewer.