Best laravel framework open-source packages.

Laravel auth

Starter pack for building websites using Laravel Breeze which has been modified with Keen Admin integration.
Updated 5 months ago

Logo

Authentication implementation uses Laravel Breeze, which has been enhanced and modified with Keen Admin integration to provide an elegant and functional user interface.

GitHub repo size GitHub contributors GitHub stars GitHub forks

Features

This project makes it easy to:

  • Laravel Breeze: Utilizes the power of Laravel Breeze for a robust authentication system.
  • Custom Styling: The authentication views have been enhanced with a visually appealing and modern design.
  • User-Friendly: Provides a seamless and user-friendly authentication experience.
  • Easy to Install: Follow the simple installation steps below to get started.

Getting started

To install Laravel Auth, follow these steps:

Clone the Repository

git clone https://github.com/muhamdaily/laravel-auth.git

Navigate to the Project Directory

cd laravel-auth

Install Dependencies

composer install

Copy the Example Environment File

cp .env.example .env

Generate Application Key

php artisan key:generate

Configuration

Update the .env file with your database credentials.

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=YOUR_DATABASE_NAME
DB_USERNAME=YOUR_USERNAME
DB_PASSWORD=YOUR_PASSWORD

Update the .env file with your SMTP email.

MAIL_MAILER=smtp
MAIL_HOST=YOUR_HOST
MAIL_PORT=YOUR_PORT
MAIL_USERNAME=YOUR_USERNAME
MAIL_PASSWORD=YOUR_PASSWORD
MAIL_ENCRYPTION=YOUR_ENCRYPTION
MAIL_FROM_ADDRESS="hello@example.com"
MAIL_FROM_NAME="${APP_NAME}"

Update the .env file with your APi Keys.

# Github Auth APi Key
GITHUB_CLIENT_ID=
GITHUB_CLIENT_SECRET=

# Google Auth APi Key
GOOGLE_CLIENT_ID=
GOOGLE_CLIENT_SECRET=

Using

Run Migrations and Seed the Database

php artisan migrate --seed

Run the Development Server

php artisan serve

Open your browser and visit http://localhost:8000 to access the authentication system.

Contributing to Laravel Auth

To contribute to Laravel Auth, follow these steps:

  1. Fork this repository.
  2. Create a branch: git checkout -b <branch_name>.
  3. Make your changes and commit them: git commit -m '<commit_message>'
  4. Push to the original branch: git push origin <project_name>/<location>
  5. Create the pull request.

Alternatively see the GitHub documentation on creating a pull request.

Contributors

Thanks to the following people who have contributed to this project:

Contact

If you want to contact me you can reach me at muhammadmauribi@gmail.com.

License

This Laravel Auth repository is open-source software licensed under the MIT License.