Laravel对foreach的许多关系错误

时间:2017-08-29 13:30:14

标签: php laravel laravel-5.4 laravel-eloquent

我有2个表称为产品和类别产品belongsToMany类别和类别belongsToMany产品这里是我的表架构

 Schema::create('products', function (Blueprint $table) {
    $table->increments('id');
    $table->timestamps();
    $table->string('image');
    $table->string('stock');
    $table->string('title');
    $table->string('slug')->unique();
    $table->string('gender');
    $table->text('description');
    $table->integer('price');
    $table->integer('user_id')->unsigned();
    $table->foreign('user_id')->references('id')->on('users')
                ->onDelete('restrict')
                ->onUpdate('restrict');

    $table->dateTime('published_at');
});

这是我的类别表架构

Schema::create('categories', function (Blueprint $table) {
    $table->increments('id');
    $table->integer('categorydesigner_id')->unsigned()->index();
    $table->string('name')->unique();
    $table->timestamps();
});

Schema::create('category_product', function (Blueprint $table) {
    $table->integer('product_id')->unsigned()->index();
    $table->integer('category_id')->unsigned()->index();
    $table->foreign('category_id')->references('id')->on('categories')
                ->onDelete('restrict')
                ->onUpdate('restrict');
    $table->foreign('product_id')->references('id')->on('products')
                ->onDelete('restrict')
                ->onUpdate('restrict');
    $table->timestamps();
});

这是我的控制器

public function productpost(Request $request){

    $this->validate($request, [
        'title' => 'required|max:255',
        'description' => 'required',
        'price' => 'required',
        'image' => 'image|required',
    ]);

    $designer_name = $request->designer;
    $designer_slug = str_random(40);
    $designer = designer::where('name', $designer_name)->firstOrCreate(
            ['name' => $designer_name], ['slug' => $designer_slug]
        );
    $designer->name = $designer_name;
    $designer->slug = $designer_slug;
    $designer->save();
    $designer_id = $designer->id;
    $product = new Product;
    $product->title = $request->title;
    $product->designer_id = $designer_id;
    $product->description = $request->description;
    $product->price = $request->price;
    $product->stock = $request->stock;
    $product->gender = $request->gender;
    $product_slug = str_random(40);
    $product->slug = $product_slug;
    $product->user_id = Auth::user()->id;
    $product->published_at = Carbon::now()->format('Y-m-d');
    if($request->hasFile('image')) {
        $file = Input::file('image');
        //getting timestamp
        $timestamp = str_replace([' ', ':'], '-', Carbon::now()->toDateTimeString());
        $name = $timestamp. '-' .$file->getClientOriginalName();
        $file->move(public_path().'/images/product/', $name);
        $product->image = $name;
        $thumb = Image::make(public_path().'/images/product/' . $name)->resize(1200,1800)->save(public_path().'/images/product/thumb/' . $name, 90);  
    }
    $product->save();
    $productsearch = product::where('slug', $product_slug)->firstorfail();
    $product_id = $productsearch->id;
    $categoryname = $request->category;
        foreach ($categoryname as $name) {
            $category = category::where('name', $name)->firstOrCreate(['name' => $name, 'categorydesigner_id' => $designer_id]);
            $category->name = $name;
            $category->categorydesigner_id = $designer_id;
            $category->save();
            $category->products()->attach($product_id);
        }
    return Redirect::back()->with('status', 'Post Success');
}

在我的代码中我创建firstOrCreate如果类别已经拥有而不是获取id并附加了但是我收到错误 SQLSTATE [23000]:完整性约束违规:1062重复“categories_name_unique”的重复条目“游泳” 帮帮我谢谢

1 个答案:

答案 0 :(得分:1)

由于您无论如何都要保存保存实例,您也可以使用firstOrNew

$category = category::firstOrNew(['name' => $name]);
$category->categorydesigner_id = $designer->id;
$category->save();
$category->products()->attach($product_id);

这应该摆脱错误。

希望这有帮助!