migrate to gtea from bistbucket
This commit is contained in:
17
app/Http/Controllers/DataDeletionController.php
Normal file
17
app/Http/Controllers/DataDeletionController.php
Normal file
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use App\Models\Option;
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class DataDeletionController extends Controller
|
||||
{
|
||||
public function index()
|
||||
{
|
||||
$page_data = get_option('manage-pages');
|
||||
$general = Option::where('key','general')->first();
|
||||
|
||||
return view('web.data-deletion.index', compact('page_data', 'general'));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user