Like original Laravel migration files. Something like this would be usefull:
<?php
namespace App;
use Deiucanta\Smart\Field;
use Deiucanta\Smart\Model;
class Product extends Model
{
public function fields()
{
return [
Field::make('id')->increments(),
Field::make('titulo')->text(),
Field::timestamps() // or some fancy method name
];
}
}
Like original Laravel migration files. Something like this would be usefull: