import { Link, Head } from '@inertiajs/react'; import { PageProps } from '@/types'; export default function Welcome({ auth, laravelVersion, phpVersion }: PageProps<{ laravelVersion: string, phpVersion: string }>) { const handleImageError = () => { document.getElementById('screenshot-container')?.classList.add('!hidden'); document.getElementById('docs-card')?.classList.add('!row-span-1'); document.getElementById('docs-card-content')?.classList.add('!flex-row'); document.getElementById('background')?.classList.add('!hidden'); }; return ( <>
Laravel documentation screenshot Laravel documentation screenshot

Documentation

Laravel has wonderful documentation covering every aspect of the framework. Whether you are a newcomer or have prior experience with Laravel, we recommend reading our documentation from beginning to end.

Laracasts

Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process.

Laravel News

Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials.

Vibrant Ecosystem

Laravel's robust library of first-party tools and libraries, such as Forge, Vapor, Nova, Envoyer, and Herd help you take your projects to the next level. Pair them with powerful open source libraries like Cashier, Dusk, Echo, Horizon, Sanctum, Telescope, and more.

); }