@@ -12,7 +12,7 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | public function up() |
| 14 | 14 | { |
| 15 | - Schema::create('humanresources', function (Blueprint $table) { |
|
| 15 | + Schema::create('humanresources', function(Blueprint $table) { |
|
| 16 | 16 | $table->increments('id'); |
| 17 | 17 | $table->string('name'); |
| 18 | 18 | $table->string('slug', 50)->index(); |
@@ -102,7 +102,7 @@ |
||
| 102 | 102 | ]; |
| 103 | 103 | |
| 104 | 104 | // If capacity is a slug, grab the humanresource |
| 105 | - if(!is_numeric($statement['capacity'])) |
|
| 105 | + if (!is_numeric($statement['capacity'])) |
|
| 106 | 106 | { |
| 107 | 107 | $vacancyValues['humanresource_id'] = $business->humanresources() |
| 108 | 108 | ->where('slug', $statement['capacity']) |