Skip to content

Commit

Permalink
fix: add seeds namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
magnobiet committed Jan 9, 2023
1 parent db1c707 commit 2f463b8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions database/seeds/CitiesTableSeeder.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?php

namespace Database\Seeders;

use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;

class CitiesTableSeeder extends Seeder
{
Expand Down
4 changes: 4 additions & 0 deletions database/seeds/StatesTableSeeder.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
<?php

namespace Database\Seeders;

use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;

class StatesTableSeeder extends Seeder
{
Expand Down

0 comments on commit 2f463b8

Please sign in to comment.