V
V
Vatrush2019-04-09 15:48:38
Laravel
Vatrush, 2019-04-09 15:48:38

How to properly edit post in laravel?

How should this be done?
Like this: Or create a form? Like this:
<a href="/edit/{{$news->id}}">Редактировать</a>

<form action="/news/{{ $news->id }}/edit" method="POST">
    {{ csrf_field() }}
    <button type="submit" > Редактировать</button>
</form>

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Dmitry, 2019-04-18
@Vatrush

Do as recommended for Resource Controllers. This is the best option.
https://laravel.com/docs/5.8/controllers#resource-...

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question