parabellumkoval / backpack-articles
Implement Articles API & MYSQL for backpack
dev-main
2023-06-13 09:35 UTC
Requires
- php: >=7.4
Requires (Dev)
- laravel/pint: ^1.0
- nunomaduro/collision: ^6.0
- nunomaduro/larastan: ^2.0.1
- orchestra/testbench: ^7.0
- pestphp/pest: ^1.21
- pestphp/pest-plugin-laravel: ^1.1
- phpstan/extension-installer: ^1.1
- phpstan/phpstan-deprecation-rules: ^1.0
- phpstan/phpstan-phpunit: ^1.0
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-02-21 13:50:26 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.