Skip to content

Commit

Permalink
edited modal file
Browse files Browse the repository at this point in the history
  • Loading branch information
suyashnautiyal authored Jul 10, 2023
1 parent f2167e6 commit 967d27a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/HR/Resources/views/universities/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@
</td>
<td>
<a href="{{ route('universities.edit', $university) }}" title="Edit" class="pr-1 btn btn-link"><i class="text-success fa ffa-lga-edit "></i></a>
<button type="submit" class="pl-1 btn btn-link" title="Delete" data-toggle="modal" data-target="#DeleteUniversityModal{{ $university->id }}"><i class="text-danger fa fa-trash fa-lg"></i></button>
<button type="submit" class="pl-1 btn btn-link" title="Delete" data-toggle="modal" data-target="#deleteUniversityModal{{ $university->id }}"><i class="text-danger fa fa-trash fa-lg"></i></button>
@include('component.delete-modal', [
modalId' => 'DeleteUniversityModal' . $university->id,
'modalId' => 'deleteUniversityModal' . $university->id,
'title' => 'Delete University',
'body' => 'Are you sure you want to delete this university?',
'action' => route('universities.destroy', $university)
Expand Down

0 comments on commit 967d27a

Please sign in to comment.