changes, global search (clients, cleintCases)

This commit is contained in:
Simon Pocrnjič
2024-11-19 12:49:16 +01:00
parent c45751c1e2
commit 3ae70bf340
37 changed files with 1888 additions and 229 deletions
+1 -1
View File
@@ -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',
+17
View File
@@ -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();
}
}