import { Button } from '@/components/ui/button'; import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card'; import { router, useForm } from '@inertiajs/react'; import { Power } from 'lucide-react'; import { FormEventHandler } from 'react'; export default function ApplicationReboot() { const { post, processing } = useForm(); const handleReboot: FormEventHandler = (e) => { e.preventDefault(); post(route('system.reboot')); }; return (

Application Reboot

Reboot your application to apply changes

{/* Actions to be performed */} System Operations The following operations will be performed:
1. Clear and rebuild application cache, route, view and config
5. Bring application out of maintenance mode
{/* Reboot Button */}
); }