App Store Pre-Sale Feature

This commit is contained in:
cuneytsenturk
2019-01-30 18:39:39 +03:00
parent 39d3c85615
commit 4bc916924f
70 changed files with 2796 additions and 2 deletions

View File

@ -26,11 +26,12 @@ class Home extends Controller
]
];
$pre_sale = $this->getPreSaleModules($data);
$paid = $this->getPaidModules($data);
$new = $this->getNewModules($data);
$free = $this->getFreeModules($data);
$installed = Module::all()->pluck('status', 'alias')->toArray();
return view('modules.home.index', compact('paid', 'new', 'free', 'installed'));
return view('modules.home.index', compact('pre_sale', 'paid', 'new', 'free', 'installed'));
}
}