asseco-voice / laravel-containers
Adding container support to Laravel models
Installs: 3 847
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 7
Forks: 0
Open Issues: 4
Requires
- php: ^8.1
- asseco-voice/laravel-common: ^3.0
- laravel/framework: ^10.0
Requires (Dev)
- fakerphp/faker: ^1.9.1
- mockery/mockery: ^1.4.4
- orchestra/testbench: ^8.5
- phpunit/phpunit: ^10.0
- dev-master
- v3.0.0
- v2.1.0
- v2.0.0
- v1.1.0
- v1.0.3
- v1.0.2
- v1.0.1
- v1.0.0
- v0.2.0
- v0.1.4
- v0.1.3
- v0.1.2
- v0.1.1
- v0.1.0
- dev-dependabot/composer/symfony/var-dumper-6.4.15
- dev-dependabot/composer/symfony/http-foundation-6.4.14
- dev-dependabot/composer/symfony/process-6.4.14
- dev-dependabot/composer/guzzlehttp/psr7-2.5.0
This package is auto-updated.
Last update: 2025-03-31 03:41:56 UTC
README
Containers
Purpose of this repository is to provide container support to any Laravel model.
Container is an entity for organizing multiple resources under a single logical unit.
Example
Having a contacts
table:
ID First name
1 Foo
2 Bar
3 Baz
4 Boo
5 Far
6 Faz
You can logically organize it in 2 containers:
ID Name
1 F named
2 B named
Resulting in an organized contacts
table
ID First name Container ID
1 Foo 1
2 Bar 2
3 Baz 2
4 Boo 2
5 Far 1
6 Faz 1
Installation
Require the package with composer require asseco-voice/laravel-containers
.
Service provider for Laravel will be installed automatically.
Usage
In order to use this repository the following must be done:
- Run
php artisan migrate
to migrate generated migrations - Add a
Containable
trait to models you wish having containers.
Extending the package
Publishing the configuration will enable you to change package models as well as controlling how migrations behave. If extending the model, make sure you're extending the original model in your implementation.