parabellumkoval / backpack-articles
Implement Articles API & MYSQL for backpack
v0.1.1
2025-10-04 08:54 UTC
Requires
- php: ^8.2
- backpack/crud: dev-store
- cviebrock/eloquent-sluggable: ^12.0
- laravel/framework: ^12.0
- parabellumkoval/backpack-settings: 2.x-dev
- spatie/laravel-translatable: ^6.0.0
Requires (Dev)
- orchestra/testbench: ^6.0
- phpunit/phpunit: *
This package is auto-updated.
Last update: 2025-10-04 13:27:09 UTC
README
This package provides a quick starter kit for implementing articles for Laravel Backpack. Provides a database, CRUD interface, API routes and more.
Installation
Install via composer
composer require parabellumKoval/backpack-articles
Migrate
php artisan migrate
Publish
Configuration File
php artisan vendor:publish --provider="Backpack\Articles\ServiceProvider" --tag="config"
Views File
php artisan vendor:publish --provider="Backpack\Articles\ServiceProvider" --tag="views"
Migrations File
php artisan vendor:publish --provider="Backpack\Articles\ServiceProvider" --tag="migrations"
Routes File
php artisan vendor:publish --provider="Backpack\Articles\ServiceProvider" --tag="routes"
Usage
Seeders
php artisan db:seed --class="Backpack\Articles\database\seeders\ArticlesSeeder"
Security
If you discover any security related issues, please email instead of using the issue tracker.