KSA-ORACLE-ALLACCESSKEYS/app/Http/Controllers/AppointmentController.php
Nyavokevin 9e5cc5ab1a
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
add dark theme
2025-09-18 20:34:07 +03:00

21 lines
419 B
PHP

<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Inertia\Inertia;
class AppointmentController extends Controller
{
public function index()
{
try{
return Inertia::render('Agenda');
}catch (\Exception $e) {
Log::error('Error fetching agenda: '.$e->getMessage(), [
'trace' => $e->getTraceAsString()
]);
}
}
}