如何通过变量id在Laravel中形成动作?

时间:2018-12-03 14:45:57

标签: php laravel-5

我具有以下表格来更新类别数据

<h1>{{isset($image)?'Edit':'New'}}  Category</h1>

            <hr/>
            @if(isset($image))
    <form method="PUT" action="http://localhost:8000/update" enctype="multipart/form-data">
    <input type="hidden" name="_method" value="put">

现在我需要将$ image-> id传递给操作

 action="http://localhost:8000/update/ image->id here

我该怎么做?

2 个答案:

答案 0 :(得分:0)

您需要使用:

<form method="PUT" action="http://localhost:8000/update/{{$image->id}}" enctype="multipart/form-data">

假设您正在使用资源控制器,其功能类似于update

public function update($request, $id)

答案 1 :(得分:0)

或者如果您使用的是类似for的操作方法

因此您可以使用它来调用 id 或任何 variable

action('PostController@store')