aler998/laraveladminpanel

The Laravel Framework with integrated a bootstrap base admin panel

v1.0.1 2021-07-04 13:19 UTC

This package is auto-updated.

Last update: 2024-04-04 20:23:12 UTC


README

Issues Stars

About Simple Admin Panel

This is a project based on laravel with breeze authentication and a simple bootstrap admin panel

Features

  • Simple to Manage
  • Laravel breeze authentication system
  • StartBootstrap Admin panel
  • Datatables and Chart
  • Super Admin Permission

Installation

Create a project via composer

composer create-project aler998/laraveladminpanel myLaravelProject

Then install dependencies

npm install && npm run dev

Set .env file

DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=yourDBname
DB_USERNAME=yourDBuser
DB_PASSWORD=yourstrongpwd

Run the migrations with seed

php artisan migrate --seed

This Will create an Admin user with this credentials

And 50 other test users, to remove delete the following lines in database/seeder/UserSeeder.php

User::factory()
    ->count(50)
    ->create();

Finally serve the application

php artisan serve