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(); }