Skip to content

Commit

Permalink
drop unnecessary column, fix page
Browse files Browse the repository at this point in the history
  • Loading branch information
danivideda committed Dec 4, 2020
1 parent 4372b8f commit ca58a1a
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ public function up()
$table->string('name');
$table->string('nickname');
$table->string('email')->unique();
$table->json('classroom_joined')->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public function up()
$table->string('nickname');
$table->string('school_name');
$table->string('email')->unique();
$table->json('classroom_teached')->nullable();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/class.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<ul class="flex items-center">
<li>
@if (auth('student')->check())
<a href="#" class="text-gray-400 hover:text-black">
<a href="{{ route('student.dashboard', $classroom->id) }}" class="text-gray-400 hover:text-black">
Back to Class
</a>
@else
Expand Down

0 comments on commit ca58a1a

Please sign in to comment.