This repository demonstrates a simple custom login system built with Laravel, offering flexibility without relying on external packages like Breeze or Fortify.
Clone this repository to your local machine using the following command:
git clone https://github.com/zibu9/customLogin.gitClone this repository to your local machine using the following command:
cd customLoginCopy the env.example file to create a new .env file:
cp .env.example .envGenerate the application key with the following command:
php artisan key:generateCreate a SQLite database for the project:
touch database/database.sqliteIf you are using a different database, update your .env file accordingly.
Run the migrations to create the necessary database tables:
php artisan migrateStart the Laravel development server:
php artisan serve
Visit http://localhost:8000 in your browser to access the custom login application.