Includes Laravel Fortify for authentication
This starter kit provides a minimal and simple starting point for building a Laravel application with authentication. Styled with Tailwind. It also includes Laravel Fortify which publishes authentication controllers to your application that can be easily customized based on your own application's needs.
This starter is powered by React, Inertia, Tailwind and Laravel.
- Laravel v10.0
- Laravel Fortify v1.7
- Laravel Sail v1.18
- React v18.2
- Inertia React v1.0.2
- Inertia Laravel v0.6.9
- Tailwind CSS v3.2
- Ziggy v1.5
- Laravel - Backend 🎰
- ReactJs - Frontend 💻
- InertiaJs - Mediator(Helps discard API) 🧑🦯
- Tailwind CSS - Styling 💅
If your computer already has PHP and Composer installed, you may create a new project by using Composer directly.
composer create-project nwanguma/atlas <your-project-name>
cd <your-project-name>
npm install
php artisan storage:link
php artisan migrate
npm run dev
php artisan serve
- Windows
rmdir /s docs del README.md
- Linux
sudo rm -r docs rm README.md
-
Make Hard Visits with
Inertia::Location(route('login'));
Good for those pages that require refresh of sessions, to avoid 419 error (Page Expired).
-
Global alias
const path = require("path"); export default defineConfig({ // ... resolve: { alias: { "@": path.resolve(__dirname, "resources/ts"), }, }, });
Global alias
@
for absolute path imports.
Feel free to create a pull request.