16 lines
261 B
PHP
16 lines
261 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\Client;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
|
|
class AboutController extends Controller
|
|
{
|
|
public function index()
|
|
{
|
|
return Inertia::render('about');
|
|
}
|
|
}
|