@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('ro_province', function (Blueprint $table) { |
|
| 16 | + Schema::create('ro_province', function(Blueprint $table) { |
|
| 17 | 17 | $table->string('province_id', 20)->primary(); |
| 18 | 18 | $table->string('province', 255)->nullable(); |
| 19 | 19 | $table->timestamps(); |
@@ -13,7 +13,7 @@ |
||
| 13 | 13 | */ |
| 14 | 14 | public function up() |
| 15 | 15 | { |
| 16 | - Schema::create('ro_city', function (Blueprint $table) { |
|
| 16 | + Schema::create('ro_city', function(Blueprint $table) { |
|
| 17 | 17 | $table->string('city_id', 20)->primary(); |
| 18 | 18 | $table->string('province_id', 20); |
| 19 | 19 | $table->string('province', 120)->nullable(); |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -Route::get('raja-ongkir', function () { |
|
| 3 | +Route::get('raja-ongkir', function() { |
|
| 4 | 4 | dd(RajaOngkir::getProvince()); |
| 5 | 5 | }); |