v1.4.0 - Added category search on the app
Added comments Fixed code Fixed pagination still being there without using it
This commit is contained in:
@@ -74,7 +74,7 @@ class MenuPlanController extends Controller
|
||||
return redirect()->route("menu-plans.index");
|
||||
else {
|
||||
$menuPlan->save();
|
||||
$menuPlans = MenuPlan::query()->paginate(20);
|
||||
$menuPlans = MenuPlan::query()->get();
|
||||
|
||||
$menuArray = [];
|
||||
|
||||
@@ -154,7 +154,7 @@ class MenuPlanController extends Controller
|
||||
$menuplan->update($data);
|
||||
$menuplan->save();
|
||||
|
||||
$menuPlans = MenuPlan::query()->paginate(20);
|
||||
$menuPlans = MenuPlan::query()->get();
|
||||
|
||||
//Create news
|
||||
if($request->newsoption == true){
|
||||
|
||||
Reference in New Issue
Block a user