File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 3
3
namespace Database \Seeders ;
4
4
5
5
// use Illuminate\Database\Console\Seeds\WithoutModelEvents;
6
- use App \Models \Plan ;
7
- use App \Models \User ;
8
6
use Illuminate \Database \Seeder ;
9
7
10
8
class DatabaseSeeder extends Seeder
Original file line number Diff line number Diff line change @@ -12,14 +12,14 @@ class PlanSeeder extends Seeder
12
12
*/
13
13
public function run (): void
14
14
{
15
- if (!Plan::query ()->where ('slug ' , '= ' , 'pro-monthly ' )->exists ()) {
15
+ if (! Plan::query ()->where ('slug ' , '= ' , 'pro-monthly ' )->exists ()) {
16
16
Plan::query ()->create ([
17
17
'title ' => 'Pro - 39 DKK / måned ' ,
18
18
'slug ' => 'pro-monthly ' ,
19
19
'stripe_id ' => 'price_1M9oZfKePSHD5WYkw7y8wq1R ' ,
20
20
]);
21
21
}
22
- if (!Plan::query ()->where ('slug ' , '= ' , 'pro-yearly ' )->exists ()) {
22
+ if (! Plan::query ()->where ('slug ' , '= ' , 'pro-yearly ' )->exists ()) {
23
23
Plan::query ()->create ([
24
24
'title ' => 'Pro - 399 DKK / år ' ,
25
25
'slug ' => 'pro-yearly ' ,
You can’t perform that action at this time.
0 commit comments