added crud external-link blade and added menu plan

This commit is contained in:
Vedde
2020-06-23 11:59:26 +02:00
parent dbe6a4dcfe
commit 85989f5b04
8 changed files with 141 additions and 15 deletions
@@ -0,0 +1,31 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateMenuPlans extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('menu_plans', function (Blueprint $table) {
$table->id();
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('menu_plans');
}
}