How do I blur the table "X" act when saving Document in Table "Y"?

Asked

Viewed 7 times

-1

I need that when saving a subject to a student, the request for said subject is deleted.

i access requests through the Solicitudcontroller

public function solicitudes()
{
    $this->middleware('auth');
    // $this->middleware('isroot');
    $solicitud = Solicitud::findOrFail(1);

    $solicitud = Solicitud::where('tutor_id', '=', Auth::user()->id)->get();



    $user = User::all();

    $propuestas = Propuestas::all();

    $lineas = lineas::all();
    return view('tutor.versolicitudes', array('propuestas' => $propuestas, 'lineas' => $lineas, 'solicitud' => $solicitud, 'user' => $user));
}

and I need that create while saving it blurs the request both are in different controllers

public Function postUpdateOrCreateAsignacion(Request $req) { $theme = Theme::find( $req['id'] );

    $data = [
        'propuesta_id'=> $req['propuesta_id'],
        'user_id'=> $req['user_id'],
        'user_id_2'=> $req['user_id_2'],

        
    ];

        Tema::create($data);
        
    return redirect()->back();

}
No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.