@aniya.jaskolski
To remove the hash from the form action URL in Laravel, you can use the url helper function in your Blade template like this:
1 2 3 |
<form action="{{ url('your-action-url') }}" method="POST">
// form fields
</form>
|
By using the url helper function, Laravel will generate the correct URL without the hash.