2018-10-23 18:47:55 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Controllers\Wizard;
|
|
|
|
|
|
|
|
use Illuminate\Routing\Controller;
|
2018-10-24 18:30:37 +03:00
|
|
|
use App\Traits\Modules;
|
2018-10-23 18:47:55 +03:00
|
|
|
|
|
|
|
class Finish extends Controller
|
|
|
|
{
|
2018-10-24 18:30:37 +03:00
|
|
|
use Modules;
|
|
|
|
|
2020-01-08 11:33:39 +03:00
|
|
|
/**
|
|
|
|
* Instantiate a new controller instance.
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
// Add CRUD permission check
|
|
|
|
$this->middleware('permission:read-admin-panel')->only(['index', 'show', 'edit', 'export']);
|
|
|
|
}
|
|
|
|
|
2018-10-23 18:47:55 +03:00
|
|
|
/**
|
|
|
|
* Show the form for creating a new resource.
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
2018-10-24 12:07:28 +03:00
|
|
|
public function index()
|
2018-10-23 18:47:55 +03:00
|
|
|
{
|
2019-11-16 10:21:14 +03:00
|
|
|
setting()->set('wizard.completed', 1);
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2018-10-24 12:24:20 +03:00
|
|
|
// Save all settings
|
|
|
|
setting()->save();
|
2018-10-23 18:47:55 +03:00
|
|
|
|
2018-10-24 18:30:37 +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
|
|
|
}
|
|
|
|
}
|