skyrkt / bentobox
A modular drop-in admin cms package for your Laravel 5 projects
Installs: 259
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Forks: 2
Language:HTML
Type:laravel-plugin
Requires
- php: >=5.6.4
- intervention/image: ^2.3
- laravel/framework: >=5.3
Requires (Dev)
- mockery/mockery: ~0.9
- dev-master
- 0.0.43b
- 0.0.42b
- 0.0.41
- 0.0.41b
- 0.0.40b
- 0.0.39
- 0.0.39b
- 0.0.38
- 0.0.38b
- 0.0.37
- 0.0.37b
- 0.0.36
- 0.0.036b
- 0.0.34
- 0.0.33
- 0.0.32
- 0.0.31
- 0.0.30
- 0.0.29
- 0.0.28
- 0.0.27
- 0.0.26
- 0.0.25
- 0.0.24
- 0.0.23
- 0.0.22
- 0.0.21
- 0.0.20
- 0.0.15
- 0.0.14
- 0.0.13
- 0.0.12
- 0.0.11
- 0.0.10
- 0.0.9
- 0.0.8
- 0.0.7
- 0.0.6
- 0.0.5
- 0.0.4
- 0.0.3
- 0.0.2
- 0.0.1
- dev-laravel53
- dev-feature/user_sorted_models
This package is auto-updated.
Last update: 2024-11-10 09:37:42 UTC
README
A Drop-in Admin CMS Package for Your Laravel 5 Projects.
Bentobox Pre-Alpha Testing Setup Instructions
- Create a new laravel project
laravel new TestBentobox
and cd into the dir - Install the latest dev package:
composer require bentobox/core dev-master
- Update
config/app.php
providers array to includeSkyrkt\Bentobox\Providers\BentoboxProvider::class,
- Create SQlite DB to test with
touch database/database.sqlite
- Set
.env
file to use sqlite instead of mysql. RemoveDB_DATABSE
,DB_USERNAME
,DB_PASSWORD
from file - Run
php artisan migrate
to migrate the default migrations as well as Bentobox media table. - Run 'php artisan make:auth' to set up Laravel's default Auth path
- Run
php artisan vendor:publish --tag=config --tag=public --tag=icon --tag=views
to access the configs in your config directory and publish the styles, icons and views. - Fire up
php artisan serve
and create an account, the default admin panel can be located at the/admin
route. - From here, try adding new migrations and models.
config/bentobox.php
andvendor/skyrkt/bentobox/src/bentobox/models/BentoboxModel.php
contain instruction on how you can manage your model in the CMS.