drewroberts / blog
Laravel package for opinionated blog implementation
Fund package maintenance!
drewroberts
Installs: 12 235
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 4
Forks: 4
Open Issues: 30
Requires
- php: ^7.3|^8.0
- tipoff/authorization: ^2.10.0
- tipoff/seo: ^2.8.0
- tipoff/support: ^2.2.0
Requires (Dev)
- tipoff/test-support: ^2.0.1
- dev-main
- 4.6.0
- 4.5.4
- 4.5.3
- 4.5.2
- 4.5.1
- 4.5.0
- 4.4.5
- 4.4.4
- 4.4.3
- 4.4.2
- 4.4.1
- 4.4.0
- 4.3.0
- 4.2.2
- 4.2.1
- 4.2.0
- 4.1.3
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.5
- 4.0.4
- 4.0.3
- 4.0.2
- 4.0.1
- 4.0.0
- 3.0.5
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.1.0
- 2.0.9
- 2.0.8
- 2.0.7
- 2.0.6
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.0
- dev-mwi/feature/add-html-content-accessors
- dev-mwi/feature/17-test-coverage-policies
- dev-mwi/feature/2-improved-test-coverage
This package is auto-updated.
Last update: 2024-11-17 21:45:50 UTC
README
Laravel blog package similar to WordPress design with Pages & Posts.
Installation
You can install the package via composer:
composer require drewroberts/blog
You can publish the config file with:
php artisan vendor:publish --provider="DrewRoberts\Blog\BlogServiceProvider" --tag="config"
This is the contents of the published config file:
return [
];
Models
We include the following models in this package:
List of Models
- Page
- Post
- Series
- Topic
For each of these models, this package implements an authorization policy that extends the roles and permissions approach of the tipoff/authorization package. The policies for each model in this package are registered through the package and do not need to be registered manually.
The models also have Laravel Nova resources in this package and they are also registered through the package and do not need to be registered manually.
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email packages@drewroberts.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.