不要在数据透视表中插入值(Laravel 5.8)

问题描述 投票:0回答:1

我有三个表Students,Subject和Pivot表名'student_subject',当使用attach(1)时(将数据插入透视表中)。

但是使用attach($ request-> subject)无效

为什么?我现在不

型号:

班级学生

    class Student extends Model
{


    protected $fillable=['user_id','FullName','age','address','father_ID','photo_id','class_id'];

    public function subject(){
        return $this->belongsToMany(Subject::class);
    }

    public function classes(){
        return $this->belongsTo('App\classes','class_id');
    }
    public function user(){
        return $this->belongsTo('App\User');
    }
    public function photo(){
        return $this->belongsTo('App\photo');
    }


    //
}

课程主题:

    class Subject extends Model
{
    protected $fillable = ['name','user_id'];
    //

    public function student()
    {
        return $this->belongsToMany(Student::class);

    }
}

学生控制器

      public function store(Request $request)
{
    $input =$request->all();
    $user  =Auth::user();


   if ($file = $request->file('photo_id')){
       $name = time().$file->getClientOriginalName();
       $file->move('images',$name);
       $photo = photo::create(['file'=>$name]);

   $input['photo_id']=$photo->id;

   }
   $student = $user->student()->create($input);

   // $student = $user->student()->create($input);

    $request['student_id'] = $request->id;
    $student->subject()->attach(1);
    dd($student);
    return redirect('admin/students');

创建视图:

    @foreach($subjects as $subject)
    <tr>
        <td>

            <div class="form-group" {‌{}}>
                {!! Form::label('name', $subject) !!}
                {!! Form::checkbox('name',$subject,false,                ['class'=>'form-control'])!!}
            </div>

        </td>
    </tr>
@endforeach

数据透视表'student_subject'

    public function up()
{
    Schema::create('student_subject', function (Blueprint $table) {
        $table->bigIncrements('id');
        $table->unsignedBigInteger('student_id');
        $table->unsignedBigInteger('subject_id');

        // $table->foreign('student_id')->references('id')->on('students');
        $table->foreign('student_id')->references('id')->on('students');

        $table->foreign('subject_id')->references('id')->on('subjects');
    });
}                                
php mysql phpmyadmin pivot-table laravel-5.8
1个回答
0
投票

如果有多个复选框,则应将复选框名称设置为数组名称[]。

Form::checkbox('name[]', $subject, false);

然后您可以获得$request->name作为数组

$subjects = $request->input('name');
foreach($subjects as $subject){
 $student->subject()->attach($subject);
}

检查此问题Laravel - Store multiple checkbox form values in database

© www.soinside.com 2019 - 2024. All rights reserved.