dousuochu7291 2017-11-13 07:50
浏览 29
已采纳

在数据透视表中分离行 - Laravel

I have a pivot table country_team with data in this form

country_team

 country_id    team_id  
     1            1
     1            2

Country

   id    name 
    1    Spain 

Team

 id     name
  1     Barcelona
  2     Real Madrid

In my table, i have it displayed in this form

Table

 Country_id    Team
     1         Barcelona
     1         Real Madrid

Now, i want to detach real Madrid from the row but how can get the id of real madrid or get the name Real Madrid to detach it. I cannot delete using country_id since it will delete all teams belonging to that particular country .

Controller

public function index()
{
    $countries = Country::where('id',Auth::user()->id)->get();

    return view('admin.order.index',compact('orders'));
}

public function deleteTeam()
{
    $get_country_id = Country::findOrFail($id);  
    $get_country_id->teams()->detach();  
}

HTML

<tbody>
    @foreach($countries as $country)
        @foreach($country->teams as $team)
        <tr>
            <td>{{$country->id }}</td>
            <td>{{ $team->name}}</td>
        </tr>
        @endforeach
    @endforeach
</tbody>
  • 写回答

3条回答 默认 最新

  • douzhimao8656 2017-11-13 08:25
    关注

    I personally use somethink like this to detach ids.
    Controller

    public function deleteTeam($country_id, $team_id)
    {
        $country = Country::findOrFail($country_id);  
        $country->teams()->detach($team_id);
    }
    

    HTML

    <tbody>
        @foreach($countries as $country)
            @foreach($country->teams as $team)
                <tr>
                    <td>{{ $country->id }}</td>
                    <td>{{ $team->name }}</td>
                    <td>
                        <form action="{{ route('admin.team.delete', ['country_id' => $country->id, 'team_id' => $tem->id]) }}" method="post">
                            <button type="submit" role="button">Delete</button>
                            {{ csrf_field() }}
                        </form>
                    </td>
                </tr>
            @endforeach
        @endforeach
    </tbody>
    

    And in your web.php you have to add the route in the correct group or something.

    Route::post('delete/{country_id}/{team_id}', [
        'uses' => 'ControllerName@deleteTeam',
        'as' => 'admin.team.delete'
    ]);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥15 对于相关问题的求解与代码
  • ¥15 ubuntu子系统密码忘记
  • ¥15 信号傅里叶变换在matlab上遇到的小问题请求帮助
  • ¥15 保护模式-系统加载-段寄存器
  • ¥15 电脑桌面设定一个区域禁止鼠标操作
  • ¥15 求NPF226060磁芯的详细资料
  • ¥15 使用R语言marginaleffects包进行边际效应图绘制
  • ¥20 usb设备兼容性问题
  • ¥15 错误(10048): “调用exui内部功能”库命令的参数“参数4”不能接受空数据。怎么解决啊
  • ¥15 安装svn网络有问题怎么办