ВК
{
Schema::create('finance', function (Blueprint $table) {
$table->id();
$table->integer('id_user')->nullable();
$table->integer('id_order')->nullable();
$table->string('head')->nullable();
$table->float('price')->nullable();
$table->timestamps();
});
}