diff --git a/database/migrations/2019_08_04_072959_wormholes_space_table.php b/database/migrations/2019_08_04_072959_wormholes_space_table.php index f5e4bb453..647751e8c 100644 --- a/database/migrations/2019_08_04_072959_wormholes_space_table.php +++ b/database/migrations/2019_08_04_072959_wormholes_space_table.php @@ -58,7 +58,7 @@ class WormholesSpaceTable extends Migration '>4 hours <24 hours', '<4 hours', ]); - $table->timesteamps(); + $table->timestamps(); }); } diff --git a/resources/views/structurerequest/display/structurerequests.blade.php b/resources/views/structurerequest/display/structurerequests.blade.php index cd85350f8..c426ee5a9 100644 --- a/resources/views/structurerequest/display/structurerequests.blade.php +++ b/resources/views/structurerequest/display/structurerequests.blade.php @@ -18,6 +18,7 @@ + @if($reqs != null) @foreach($reqs as $req) {{ $req->corporation_name }} @@ -37,6 +38,11 @@ {!! Form::close() !!} @endforeach + @else + + No Structure Requests + + @endif