https://github.com/4msar/interactive-model
Interaction with laravel models
https://github.com/4msar/interactive-model
Last synced: about 1 month ago
JSON representation
Interaction with laravel models
- Host: GitHub
- URL: https://github.com/4msar/interactive-model
- Owner: 4msar
- License: mit
- Created: 2022-08-29T06:30:59.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-08-29T07:08:14.000Z (almost 4 years ago)
- Last Synced: 2025-07-30T18:41:41.803Z (12 months ago)
- Language: PHP
- Size: 9.77 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# WIP: Interactive Model for Laravel
[](https://packagist.org/packages/4msar/interactive-model) [](https://packagist.org/packages/4msar/interactive-model) [](https://packagist.org/packages/4msar/interactive-model) [](https://packagist.org/packages/4msar/interactive-model)
## Getting Started
To get started you need to install the package with Composer:
```bash
composer require 4msar/interactive-model
```
### Laravel >= 5.5
That's it! The package is auto-discovered on 5.5 and up!
### Laravel <= 5.4
Add the package service provider to your providers array in `config/app.php`
```php
'providers' => [
// ...
MSAR\InteractiveModel\InteractiveModelServiceProvider,
],
```
To start using this package, run this command in your terminal and follow the onscreen prompts:
```bash
php artisan interactive
```
## Disclaimer
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.