florida_gym/app/Http/Controllers/OwnerController.php
2026-03-11 11:03:12 +05:30

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
}
}