Added Category model, resource and its API.

Updated Company model to have Categories.
This commit is contained in:
2023-06-14 16:58:35 +03:00
parent 505fa2e831
commit b5a264d92f
12 changed files with 341 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class CategorySeeder extends Seeder
{
/**
* Run the database seeds.
*/
public function run(): void
{
//
}
}