Initial commit
This commit is contained in:
16
app/Http/Controllers/LandingPageController.php
Normal file
16
app/Http/Controllers/LandingPageController.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
namespace App\Http\Controllers;
|
||||
|
||||
use Illuminate\Http\Request;
|
||||
|
||||
class LandingPageController extends Controller
|
||||
{
|
||||
public function index(){
|
||||
$data = [
|
||||
'page_title' => 'Airtime Sales Portal',
|
||||
];
|
||||
// dd($data);
|
||||
return view('landing.index', $data);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user