fabpl/zephyr

Minimal Laravel authentication and profile scaffolding with Blade and Tailwind.

Maintainers

Details

github.com/fabpl/zephyr

Source

Issues

Installs: 13

Dependents: 0

Suggesters: 0

Security: 0

Stars: 8

Watchers: 2

Forks: 0

Open Issues: 0

Language:Blade

2.0 2023-07-25 16:07 UTC

This package is auto-updated.

Last update: 2024-09-25 18:41:20 UTC


README

Introduction

Zephyr provides a minimal and simple starting point for building a Laravel application with authentication and user profile management.

Zephyr is powered by Blade, Tailwind, and Alpine.

Installation

First, you should create a new Laravel application, configure your database, and run your database migrations:

curl -s https://laravel.build/example-app | bash

cd example-app

php artisan migrate

Once you have created a new Laravel application, you may install Zephyr using Composer:

composer require fabpl/zephyr --dev

After Composer has installed the Zephyr package, you may run the zephyr:install Artisan command. This command publishes the authentication views, routes, controllers, and other resources to your application. After Zephyr is installed, you should also compile your assets so that your application's CSS file is available:

php artisan zephyr:install
php artisan migrate

Next, you may navigate to your application's /login or /register URLs in your web browser.

License

Zephyr is open-sourced software licensed under the MIT license.