laravelcollective/html is abandoned. I'm looking for reliable replacement. Many say spatie/laravel-html is good alternative. But I faced with problem of lack of documentation.
Example from laravelcollective/html usage:
{!! Form::model($user, ['route' => ['users.update', $user->id], 'method' => 'patch', 'id' => 'edit-user']) !!}
@include('users.fields')
{!! Form::close() !!}
How to made form using route with spatie/laravel-html? (Of course, I can pass url for form action from controller, but it seems less elegant solution than laravelcollective had) Is there some good documentation for spatie/laravel-html and of course, is spatie/laravel-html really good alternative for abandoned laravelcollective/html? Following spatie/laravel-html alternative not accept route as action param:
{{ html()->modelForm($user, 'PUT', 'some/url')->open() }}
{{ html()->text('name') }}
{{ html()->closeModelForm() }}
Thanks in advance!