Skip to content

Commit

Permalink
Update LiveCrudView.php
Browse files Browse the repository at this point in the history
  • Loading branch information
riteshsingh1 authored Jul 15, 2021
1 parent 9af9a73 commit 768781a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Commands/LiveCrudView.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ public function getRenderedData()
$c++;
}
$str .= '<td class="px-6 py-4 whitespace-nowrap text-right text-sm font-medium">
<a href="#" class="text-indigo-600 hover:text-indigo-900" wire:click="edit({{ $row->id }})">Edit</a>
<a href="#" class="text-indigo-600 hover:text-indigo-900" wire:click="confirmDelete({{ $row->id }})">Delete</a>
<a href="#" class="text-indigo-600 hover:text-indigo-900" wire:click="edit({{ $row->id }})">{{ __("Edit") }}</a>
<a href="#" class="text-indigo-600 hover:text-indigo-900" wire:click="confirmDelete({{ $row->id }})">{{ __("Delete") }}</a>
</td></tr>';
$str .= '@endforeach' . PHP_EOL;

Expand Down

0 comments on commit 768781a

Please sign in to comment.