Giter Site home page Giter Site logo

randhikanovan / laravel-admin-panel Goto Github PK

View Code? Open in Web Editor NEW

This project forked from kejodion/laravel-admin-panel

0.0 0.0 0.0 4.01 MB

Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel which promotes rapid scaffolding & development.

License: MIT License

PHP 64.12% CSS 3.08% JavaScript 5.10% HTML 27.71%

laravel-admin-panel's Introduction

Package no longer maintained

Please consider Laravel AJAX CRUD instead: https://github.com/kdion4891/laravel-ajax-crud


Laravel Admin Panel

Laravel Admin Panel ("LAP") is a drop-in admin panel package for Laravel which promotes rapid scaffolding & development.

Features:

  • CRUD generator
  • Demo mode
  • Roles & permissions
  • Laravel auth integration
  • User timezones (automatically set on login)
  • Dynamic model fillables (using database table columns)
  • Activity logs
  • Settings (stored in database)
  • Fully responsive (looks great on desktop & mobile)
  • AJAX form validation
  • Documentation CRUD
  • & much more

Packages used:

Assets used:

Installation

Require via composer:

composer require kjjdion/laravel-admin-panel

Publish install files:

php artisan vendor:publish --provider="Kjjdion\LaravelAdminPanel\LapServiceProvider" --tag="install"

This will create the following files:

config/lap.php
public/lap/*.*
resources/views/vendor/lap/*.*
app/Http/Controllers/Admin/BackendController.php

Add the AdminUser, DynamicFillable, and UserTimezone traits to your User model:

use Kjjdion\LaravelAdminPanel\Traits\AdminUser;
use Kjjdion\LaravelAdminPanel\Traits\DynamicFillable;
use Kjjdion\LaravelAdminPanel\Traits\UserTimezone;

class User extends Authenticatable
{
    use Notifiable, AdminUser, DynamicFillable, UserTimezone;

Run the migrations:

php artisan migrate

Logging In

Visit (APP_URL)/admin to access the admin panel.

The default admin login is:

Email Address: [email protected]
Password: admin123

Digging Deeper

Please see the documentation for more information.

Contributing

Support

Please use GitHub issues for support.

laravel-admin-panel's People

Contributors

kejodion avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.