Deje de usar cdn y mejore el calendario

This commit is contained in:
2026-04-04 16:37:14 -03:00
parent 8102265f92
commit 8ac56c7960
6 changed files with 152 additions and 14 deletions
@@ -0,0 +1,13 @@
<?php
namespace App\Http\Controllers;
use App\Models\Appointment;
use Illuminate\Http\Request;
class AppointmentController extends Controller
{
public function show(Appointment $appointment)
{
return view('appointments.show', compact('appointment'));
}
}