Thursday, March 16, 2017

How to delete categories of user?

I try to delete categories of user like as:

Category::with('user', Auth::user()->id)->where("user_id", $id)->delete();

Category model has relationship:

 public function user()
    {
        return $this->belongsTo('App\User', 'user_id', 'id');
    }

But it does not work for me



via Darama

Advertisement