Generation

generate functionFri, 19 May 2023

A categories backend for Laravel that will be a categories slider for frontend on a Comparison Shopping Service website

//Add new category function add_category(Request $request){ $data = $request->all(); $category = new Category; $category->name = $data['name']; $category->description = $data['description']; $category->save(); }

Questions about programming?Chat with your personal AI assistant