changes to sms packages and option to create user
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
namespace Database\Seeders;
|
||||
|
||||
use App\Models\Segment;
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class SegmentSeeder extends Seeder
|
||||
@@ -14,11 +13,11 @@ class SegmentSeeder extends Seeder
|
||||
public function run(): void
|
||||
{
|
||||
$sements = [
|
||||
[ 'name' => 'global', 'description' => ''],
|
||||
[ 'name' => 'terrain', 'description' => '']
|
||||
['name' => 'global', 'description' => ''],
|
||||
['name' => 'terrain', 'description' => ''],
|
||||
];
|
||||
|
||||
foreach($sements as $st){
|
||||
foreach ($sements as $st) {
|
||||
Segment::create($st);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user