23 lines
440 B
PHP
Executable File
23 lines
440 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface TopUpResourceInterface
|
|
{
|
|
|
|
// public function getAll();
|
|
|
|
public function listing($params);
|
|
public function store($request);
|
|
public function update($request);
|
|
public function check($id);
|
|
public function getByField($field, $value);
|
|
public function delete($uuid);
|
|
public function getDetailsWhereIn($field,$value,$relationship = null);
|
|
|
|
|
|
|
|
}
|