Skip to content

Commit 6b33291

Browse files
mortenebakactions-user
authored andcommitted
Dusting
1 parent ce98c14 commit 6b33291

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

database/seeders/DatabaseSeeder.php

-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
namespace Database\Seeders;
44

55
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
6-
use App\Models\Plan;
7-
use App\Models\User;
86
use Illuminate\Database\Seeder;
97

108
class DatabaseSeeder extends Seeder

database/seeders/PlanSeeder.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,14 @@ class PlanSeeder extends Seeder
1212
*/
1313
public function run(): void
1414
{
15-
if (!Plan::query()->where('slug', '=', 'pro-monthly')->exists()) {
15+
if (! Plan::query()->where('slug', '=', 'pro-monthly')->exists()) {
1616
Plan::query()->create([
1717
'title' => 'Pro - 39 DKK / måned',
1818
'slug' => 'pro-monthly',
1919
'stripe_id' => 'price_1M9oZfKePSHD5WYkw7y8wq1R',
2020
]);
2121
}
22-
if (!Plan::query()->where('slug', '=', 'pro-yearly')->exists()) {
22+
if (! Plan::query()->where('slug', '=', 'pro-yearly')->exists()) {
2323
Plan::query()->create([
2424
'title' => 'Pro - 399 DKK / år',
2525
'slug' => 'pro-yearly',

0 commit comments

Comments
 (0)