40 lines
743 B
PHP
Raw Normal View History

2018-10-23 18:47:55 +03:00
<?php
namespace App\Http\Controllers\Wizard;
use Illuminate\Routing\Controller;
use App\Traits\Modules;
use App\Models\Module\Module;
2018-10-23 18:47:55 +03:00
class Finish extends Controller
{
use Modules;
2018-10-23 18:47:55 +03:00
/**
* Show the form for creating a new resource.
*
* @return Response
*/
public function index()
2018-10-23 18:47:55 +03:00
{
2018-12-24 11:41:52 +03:00
if (setting('general.wizard', false)) {
return redirect('/');
2018-10-23 18:47:55 +03:00
}
setting()->set('general.wizard', true);
2018-10-23 18:47:55 +03:00
// Save all settings
setting()->save();
2018-10-23 18:47:55 +03:00
$data = [
'query' => [
'limit' => 4
]
];
$modules = $this->getFeaturedModules($data);
return view('wizard.finish.index', compact('modules'));
2018-10-23 18:47:55 +03:00
}
}