master_template/app/Repositories/Interface/PopupInterface.php
2024-06-21 13:29:04 +05:45

9 lines
179 B
PHP

<?php
namespace App\Repositories\Interface;
interface PopupInterface
{
public function create(array $popupDetail);
public function update($popupId, array $newDetails);
}