Posts

Showing posts with the label laravel-blade

Laravel insert or update array, multiple rows

Laravel insert or update array, multiple rows Hello guys im stuck multiple row insert or update update working fine but how to make inside of update insert new row Iwant just in edit.blade.php -> if row exists update or just create new one Hello guys im stuck multiple row insert or update update working fine but how to make inside of update insert new row Iwant just in edit.blade.php -> if row exists update or just create new one new row insert image Controller public function update(Request $request, $id) { $post = Anime::find($id); $post->anime_name = $request->input('anime_name'); $post->anime_namesecond = $request->input('anime_namesecond'); $post->anime_synopsis = $request->input('anime_synopsis'); $post->anime_studio = $request->input('anime_studio'); $post->anime_duration = $request->input('anime_duration'); $post->age_rating = $request->input('age_ra...