Reputation: 33
i have to make button link EDIT in Laravel 5.2. This one is made in earliest versions laravel and doesn't work in 5.2.
{{ link_to_route('task.edit' , 'Edit' , [$task->id] , ['class' => 'btn btn-primary'] }}
Is there any idea for that? I have no idea what should i do with $task->id?
Thanks in advance.
Upvotes: 1
Views: 262
Reputation: 17658
You can try as:
<a class="btn btn-info" href="{{ route('task.edit', ['id' => $task->id]) }}">
Edit
</a>
Upvotes: 1