parabellumkoval / backpack-store
Implement Products API & MYSQL for dackpack
v0.2.0
2025-10-04 12:00 UTC
Requires
- php: ^8.2
- backpack/crud: dev-store
- cviebrock/eloquent-sluggable: ^12.0
- laravel/framework: ^12.0
- laravel/scout: ^10.0
- meilisearch/meilisearch-php: ^1.15
- parabellumkoval/backpack-settings: 2.x-dev
- parabellumkoval/request-data: 0.1.x-dev
- spatie/laravel-translatable: ^6.0.0
Requires (Dev)
- pestphp/pest: ^3.0
- phpunit/phpunit: ^11.0
This package is auto-updated.
Last update: 2025-10-05 12:02:21 UTC
README
This package provides a quick starter kit for implementing a store for Laravel Backpack. Provides a database, CRUD interface, API routes and more.
Installation
Install via composer
composer require parabellumKoval/backpack-store
Migrate
php artisan migrate
Publish
Configuration File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="config"
Views File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="views"
Languages File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="langs"
Migrations File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="migrations"
Routes File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="routes"
Traits File
php artisan vendor:publish --provider="Backpack\Store\ServiceProvider" --tag="traits"
Usage
Seeders
php artisan db:seed --class="Backpack\Store\database\seeders\StoreSeeder"
Security
If you discover any security related issues, please email instead of using the issue tracker.