This commit is contained in:
tanch0
2024-06-18 16:26:58 +05:45
parent 613dfd1834
commit 50b8768a34
68 changed files with 1540 additions and 657 deletions

View File

@ -0,0 +1,9 @@
<?php
namespace App\Repositories\Interface;
interface AdCategoriesInterface
{
public function create(array $adCategoriesDetail);
public function update($adCategoryId, array $newDetails);
}