change icons, css, add routing to merchandise, add mail templater, fixes
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateMailTemplatesTable extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::create('mail_templates', function (Blueprint $table) {
|
||||
$table->increments('id');
|
||||
$table->string('mailable');
|
||||
$table->json('subject')->nullable();
|
||||
$table->json('html_template');
|
||||
$table->json('text_template')->nullable();
|
||||
$table->unsignedInteger('created_by')->nullable();
|
||||
$table->unsignedInteger('updated_by')->nullable();
|
||||
$table->unsignedInteger('deleted_by')->nullable();
|
||||
$table->timestamps();
|
||||
$table->softDeletes();
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user