changes, global search (clients, cleintCases)
This commit is contained in:
@@ -69,7 +69,7 @@ public function run(): void
|
||||
'nu' => rand(100000,200000),
|
||||
'first_name' => '',
|
||||
'last_name' => '',
|
||||
'full_name' => 'test d.o.o.',
|
||||
'full_name' => 'Naročnik d.o.o.',
|
||||
'gender' => 'm',
|
||||
'birthday' => '2000-01-01',
|
||||
'tax_number' => '22424345',
|
||||
|
||||
@@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
namespace Database\Seeders;
|
||||
|
||||
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
|
||||
use Illuminate\Database\Seeder;
|
||||
|
||||
class PostSeeder extends Seeder
|
||||
{
|
||||
/**
|
||||
* Run the database seeds.
|
||||
*/
|
||||
public function run(): void
|
||||
{
|
||||
\App\Models\Post::factory(500)->create();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user