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.
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
rmdir /s docs
del README.md
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.