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