<a href="{{ route('Kategori.edit', $d->id) }}" class="dropdown-item">Edit</a> <a href="{{ route('Kategori.destroy', $d->id) }}" class="dropdown-item">Delete</a>
this was successful on edit but not on destroy
I use the resource route all sections are successful only on route Category.destroy this is not successful. after I overcome the white screen appears
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
Delete should be a form submit assuming you are using HTTP DELETE
for the route:
<form action="{{ route('Kategori.destroy', $d->id) }}" method="POST">
@csrf
@method('DELETE')
<button type="submit">
Delete
</button>
</form>
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0