orbit – a flat-file database driver for Eloquent

use Illuminate\Database\Schema\Blueprint;
class Post extends Model
{
use Orbit\Concerns\Orbital;
public static function schema(Blueprint $table)
{
$table->string('title');
$table->string('slug');
$table->text('content')->nullable();
$table->timestamp('published_at');
}
}