run through pint

This commit is contained in:
2023-11-23 15:34:20 +05:00
parent fe68420bab
commit 7372435e56
9 changed files with 9 additions and 25 deletions

View File

@@ -1,8 +1,8 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{

View File

@@ -1,6 +1,5 @@
<?php
use App\Repos\System\Settings\Location\RegionRepo;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

View File

@@ -1,6 +1,5 @@
<?php
use App\Repos\System\Settings\Location\RegionRepo;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
@@ -20,7 +19,7 @@ return new class extends Migration
$table->string('region', 2)->index();
$table->foreignId('province_id')->constrained()->nullOnDelete();
$table->string('billing_username')->nullable();
$table->string('billing_password')->nullable();
$table->timestamps();

View File

@@ -30,7 +30,7 @@ class DatabaseSeeder extends Seeder
'admin',
'operator',
'user',
];
];
foreach ($roles as $role) {
Role::create(['name' => $role]);