matthv/skeletor

A little admin skeleton for laravel 5

Installs: 1 423

Dependents: 0

Suggesters: 0

Security: 0

Stars: 4

Watchers: 3

Forks: 0

Open Issues: 0

Language:Blade

v2.1.1 2021-02-03 11:01 UTC

This package is auto-updated.

Last update: 2024-03-29 03:51:20 UTC


README

A light admin skeleton for Laravel 5.

[W.I.P] This repo is actually in beta version.

skeletor

Installation

composer require 'matthv/skeletor'

That's all, thanks Laravel auto discovery !

Requirements

  • Laravel >=7

Configuration

migration & seed

php artisan migrate && php artisan db:seed --class="Matthv\Skeletor\Database\Seeds\AdminsTableSeeder"

publish assets

php artisan vendor:publish --provider="Matthv\Skeletor\SkeletorServiceProvider" --tag=public

Use

Now you can go to : http://localhost:8000/admin And connect to : http://localhost:8000/admin/login with :

email: admin@skeletor.com
password: admin

You can change this credentials to : http://localhost:8000/admin/account (click on the avatar)

Create your own controller

Filters

  • documentation soon

Customize & override

You can publish

  • routes and add yours
php artisan vendor:publish --provider="Matthv\Skeletor\SkeletorServiceProvider" --tag=custom_routes
  • personalize config
php artisan vendor:publish --provider="Matthv\Skeletor\SkeletorServiceProvider" --tag=config
  • change views
php artisan vendor:publish --provider="Matthv\Skeletor\SkeletorServiceProvider" --tag=views
  • update i18N
php artisan vendor:publish --provider="Matthv\Skeletor\SkeletorServiceProvider" --tag=lang

connexion example