Skip to content

Instantly share code, notes, and snippets.

@mitrallex
Created August 6, 2018 12:05
Show Gist options
  • Save mitrallex/58fe5fedde66576c02fde61c81f02e2d to your computer and use it in GitHub Desktop.
Save mitrallex/58fe5fedde66576c02fde61c81f02e2d to your computer and use it in GitHub Desktop.
laravel-google-recaptcha
<?php
public function up()
{
Schema::create('feedback', function (Blueprint $table) {
$table->increments('id');
$table->string('name');
$table->string('email');
$table->text('message');
$table->timestamps();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment