https://github.com/percivalyan/laravel-auth-sb-admin
Laravel Auth with SB Admin Template
https://github.com/percivalyan/laravel-auth-sb-admin
laravel laravel-framework sb-admin
Last synced: about 1 month ago
JSON representation
Laravel Auth with SB Admin Template
- Host: GitHub
- URL: https://github.com/percivalyan/laravel-auth-sb-admin
- Owner: percivalyan
- Created: 2025-05-13T09:08:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2025-05-15T10:04:26.000Z (about 1 year ago)
- Last Synced: 2025-06-17T13:40:38.157Z (12 months ago)
- Topics: laravel, laravel-framework, sb-admin
- Language: CSS
- Homepage: https://startbootstrap.com/template/sb-admin
- Size: 120 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel Auth SB Admin
[](LICENSE)
[](https://laravel.com)
[](https://php.net/)
[](https://www.mysql.com/)
## Features
- Login Multi Role (Admin, Editor & User)
- Register (User)
- User Management (Admin)
## Technology Stack
- Laravel 12 Framework
- MySQL Database
- PHP 8.2+
- Composer 2.8+
## Prerequisites
- PHP 8.2.12 or higher
- Composer 2.8.6 or higher
- MySQL 5.7+ or MariaDB 10.3+
- XAMPP/WAMP/LAMP (optional)
## Installation
### Clone the repository
```bash
git clone https://github.com/percivalyan/laravel-auth-sb-admin.git
```
```bash
cd laravel-auth-sb-admin
```
### Install PHP dependencies
```bash
composer install
```
### Setup environment
```bash
cp .env.example .env
```
or
```bash
copy .env.example .env
```
```bash
php artisan key:generate
```
### Configure database (edit .env file with your credentials)
```bash
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=Your Name Database
DB_USERNAME=Your Username
DB_PASSWORD=Your Password
```
### Run migrations and seeders
```bash
php artisan migrate --seed
```
### Start development server
```bash
php artisan serve
```