1
0
Fork 0
mirror of https://github.com/archtechx/virtualcolumn.git synced 2025-12-14 01:14:03 +00:00

Initial commit

This commit is contained in:
Samuel Štancl 2020-07-06 14:25:02 +02:00
commit 1418a51fef
11 changed files with 6071 additions and 0 deletions

46
README.md Normal file
View file

@ -0,0 +1,46 @@
# Eloquent Virtual Column
## Installation
Supports Laravel 6 and 7.
```
composer require stancl/virtual-column
```
## Usage
Use the `VirtualColumn` model on your model:
```php
use Illuminate\Database\Eloquent\Model;
use Stancl\VirtualColumn\VirtualColumn;
class MyModel extends Model
{
use VirtualColumn;
public $guarded = [];
}
```
Create a migration:
```php
public function up()
{
Schema::create('my_models', function (Blueprint $table) {
$table->increments('id');
$table->string('custom1')->nullable();
$table->string('custom2')->nullable();
$table->json('data');
});
}
```
And store any data on your model:
```php
$myModel = MyModel::create(['foo' => 'bar']);
$myModel->update(['foo' => 'baz']);
```