Package Data | |
---|---|
Maintainer Username: | endihunter |
Maintainer Contact: | endi1982@gmail.com (endi) |
Package Create Date: | 2016-02-22 |
Package Last Update: | 2018-07-05 |
Home Page: | |
Language: | PHP |
License: | Unknown |
Last Refreshed: | 2024-11-11 15:14:16 |
Package Statistics | |
---|---|
Total Downloads: | 180 |
Monthly Downloads: | 0 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 6 |
adminarchitect/pages
provides the default skeleton for Admin Architect pages module.
It includes Pages module out of the box as like as eloquent model and pages repository.
Note:
this is not standalone package, it can be used only in conjunction with Admin Architect
(terranet/administrator
) package.
then require it:
composer require adminarchitect/pages
register Pages service provider by adding to the app/config.php providers
section:
'providers' => [
...
Terranet\Pages\ServiceProvider::class
...
]
now you can publish the whole package resources by running:
php artisan vendor:publish [--provider="Terranet\\Pages\\ServiceProvider"]
Pages
module will be copied into the app\Http\Terranet\Administrator\Modules
directory.
Associated eloquent model Page
will be added as well to app
directory.
Routes become available at app\Http\Terranet\Pages\routes.php
.
Run artisan command to create migration:
php artisan pages:table
this will create the migration file inside of database/migrations
directory...
Run migration:
php artisan migrate
Enjoy!