LaravelPackages.net
Acme Inc.
Toggle sidebar
adminarchitect/news

Admin Architect - News model

108
1
v1.0.6
About adminarchitect/news

adminarchitect/news is a Laravel package for admin architect - news model. It currently has 1 GitHub stars and 108 downloads on Packagist (latest version v1.0.6). Install it with composer require adminarchitect/news. Discover more Laravel packages by adminarchitect or browse all Laravel packages to compare alternatives.

Last updated

Admin Architect - News module

adminarchitect/news provides the default skeleton for Admin Architect news module. It includes News & News Categories modules out of the box as like as eloquent models and news repository.

Installation

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/news

register News service provider by adding to the app/config.php providers section:

'providers' => [
	...
	Terranet\News\ServiceProvider::class
	...
]

now you can publish the whole package resources by running:

php artisan vendor:publish [--provider="Terranet\\News\\ServiceProvider"]

Modules

News and NewsCategories modules will be copied into the app\Http\Terranet\Administrator\Modules directory.

Models

Associated eloquent models as: NewsItem, NewsCategory and pivot NewsCategoryItem will be added as well to app directory.

Routes

Routes become available at app\Http\Terranet\News\routes.php.

Migrations

Run artisan command to create migration:

php artisan news:tables

this will create the migration file inside of database/migrations directory...

Run migration:

php artisan migrate

Enjoy!

Star History Chart