dongxinm279890 2017-08-08 11:23
浏览 180
已采纳

Laravel:用于删除数据的控制器功能

I will explain first the tables and how code works

Tables

I have:

  • projects with fields: id, slug, order, public, pathheader and pathhome.
  • project_translations with fields: id, locale, project_id, title and caption.
  • clients with fields: id, name, slug and priority.
  • client_project with fields: id, client_id and project_id

How the code works

When I create a project, I create two project translation too (one for each locale, ex: 'es', 'en'). and then I select a client and this makes the relation client_project.

When I delete the project, I delete at the same time the project_translations which have the same project_id and the client_project row where project_id is the same.

What I want

When I delete the client, delete the row which field client_id have the same value (this is working) and then, delete the projects and projects_translations of the projects which have relation with the client i deleted.

How my function looks for the moment

public function destroyClient($id) //Destruir cliente y todo lo relacionado de la bbdd
    {
        $cliente = Client::find($id); 
        $cliente->delete(); //delete the client
        DB::table('client_project')->where('client_id',$id)->delete(); //delete the client_project relations which field client_id is the same that the client i just deleted.

        return redirect()->route('admin.clients');
    }
  • 写回答

3条回答 默认 最新

  • douti19680318 2017-08-08 11:49
    关注

    Following code will first get all the projects related to client. And then will delete all projects of a client through loop.

    public function destroyClient($id) 
    {
        $cliente = Client::find($id); 
        $cliente->delete(); //delete the client
    
        // get list of all projects of client
        $projects = DB::table('client_project')->where('client_id',$id)->get();
    
        DB::table('client_project')->where('client_id',$id)->delete(); 
    
        // delete all projects of client
        foreach($projects as $project)
        {
            DB::table('projects')->where('id',$project->id)->delete();
    
            DB::table('project_translations')->where('project_id',$project->id)->delete(); 
        }    
    
        return redirect()->route('admin.clients');
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)

报告相同问题?

悬赏问题

  • ¥100 c语言,请帮蒟蒻看一个题
  • ¥15 名为“Product”的列已属于此 DataTable
  • ¥15 安卓adb backup备份应用数据失败
  • ¥15 eclipse运行项目时遇到的问题
  • ¥15 关于#c##的问题:最近需要用CAT工具Trados进行一些开发
  • ¥15 南大pa1 小游戏没有界面,并且报了如下错误,尝试过换显卡驱动,但是好像不行
  • ¥15 没有证书,nginx怎么反向代理到只能接受https的公网网站
  • ¥50 成都蓉城足球俱乐部小程序抢票
  • ¥15 yolov7训练自己的数据集
  • ¥15 esp8266与51单片机连接问题(标签-单片机|关键词-串口)(相关搜索:51单片机|单片机|测试代码)