14 lines
252 B
PHP
14 lines
252 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class OwnerController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return view('welcome'); // Since we're using React, we'll use welcome as the entry point
|
|
}
|
|
}
|