PHPackages                             craftlogan/laravel-overflow - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Validation &amp; Sanitization](/categories/validation)
4. /
5. craftlogan/laravel-overflow

AbandonedArchivedLibrary[Validation &amp; Sanitization](/categories/validation)

craftlogan/laravel-overflow
===========================

The Laravel Overflow package will allow adding an overflow column to a form request easily. Use this package to make it easy to store overflow request values in a JSON or Text column on a database table:)

v2.1.0(5y ago)1098.0k5MITPHPPHP ^7.3

Since Jan 9Pushed 4y ago1 watchersCompare

[ Source](https://github.com/CraftLogan/Laravel-Overflow)[ Packagist](https://packagist.org/packages/craftlogan/laravel-overflow)[ Docs](https://github.com/craftlogan/laravel-overflow)[ RSS](/packages/craftlogan-laravel-overflow/feed)WikiDiscussions master Synced today

READMEChangelog (4)Dependencies (3)Versions (6)Used By (0)

[![Laravel Overflow Logo](https://raw.githubusercontent.com/CraftLogan/Laravel-Overflow/master/Laravel%20Overflow.png#logo)](https://raw.githubusercontent.com/CraftLogan/Laravel-Overflow/master/Laravel%20Overflow.png#logo)

[![All Contributors](https://camo.githubusercontent.com/ca88cf3830da504bd3c0bc15c2a99ce41326509bc2f02132398a881adc22b659/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f616c6c5f636f6e7472696275746f72732d362d6f72616e67652e7376673f7374796c653d666c61742d737175617265)](#contributors-)

[![Latest Version on Packagist](https://camo.githubusercontent.com/20499e028fba6ad1523858fd965119d935a97fbd95de17c36e16947a671ae6cd/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f63726166746c6f67616e2f6c61726176656c2d6f766572666c6f772e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/craftlogan/laravel-overflow)[![GitHub Workflow Status](https://camo.githubusercontent.com/391d7955461e3a0434b4510aec77f9ebfed68f73b13dfe7be8f569a23cd4a787/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7370617469652f6c61726176656c2d726573706f6e736563616368652f72756e2d74657374733f6c6162656c3d7465737473)](https://camo.githubusercontent.com/391d7955461e3a0434b4510aec77f9ebfed68f73b13dfe7be8f569a23cd4a787/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f7370617469652f6c61726176656c2d726573706f6e736563616368652f72756e2d74657374733f6c6162656c3d7465737473)[![MIT Licensed](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Quality Score](https://camo.githubusercontent.com/252b41aa81ae72299d8f3fa23551bc9cd62303559a7b46650782bc106451d422/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f63726166746c6f67616e2f6c61726176656c2d6f766572666c6f772e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/craftlogan/laravel-overflow)[![Total Downloads](https://camo.githubusercontent.com/92bb1f3aa9fcdb4ff3a6aeb7b5907d8937f121eb31d20dfadcbe9a8d0f7efaf0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f63726166746c6f67616e2f6c61726176656c2d6f766572666c6f772e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/craftlogan/laravel-overflow)

Laravel Overflow
================

[](#laravel-overflow)

The Laravel Overflow package will allow adding an overflow column to a form request easily. Use this package to make it easy to store overflow request values in a JSON or Text column on a database table:)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require craftlogan/laravel-overflow
```

Usage
-----

[](#usage)

#### Create Model

[](#create-model)

You should create a model which will use the overflow method.

```
php artisan make:model TestModel -m
```

-m option generates database migration with the model.

```
