Almost complete site

Add dark / light theme

Add social sharing on meme pages

Add approving / pending admin section

Improve design

Add pagination on profiles

Make front end date time user friendly

Finish rough draft of site

And Much more...

Still need to fix a few minor things before it goes live. Almost
complete.
This commit is contained in:
dev 2021-07-26 19:39:11 -07:00
parent 52a9007882
commit dbfda5cf9e
39 changed files with 54195 additions and 663 deletions

View file

@ -20,6 +20,7 @@ class CreateUsersTable extends Migration
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('address', 95);
$table->boolean('is_admin')->default(0);
$table->rememberToken();
$table->timestamps();
});

View file

@ -20,6 +20,9 @@ class CreateMemesTable extends Migration
$table->string('title');
$table->string('caption')->nullable();
$table->string('image')->nullable();
$table->boolean('is_approved')->default(0);
$table->boolean('payment_pending')->default(0);
$table->softDeletes();
$table->timestamps();
});
}

View file

@ -18,8 +18,7 @@ class CreateTipsTable extends Migration
$table->foreignId('address_id')->constrained();
$table->bigInteger('amount');
$table->string('txid')->unique();
$table->bigInteger('height');
$table->boolean('is_sent')->default(0);
$table->boolean('is_deposit');
$table->timestamps();
});
}

View file

@ -0,0 +1,36 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateJobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('jobs', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('jobs');
}
}