16 lines
287 B
PHP
Executable File
16 lines
287 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface LcardActionLogsInterface
|
|
{
|
|
|
|
public function getByFieldWithOperator($field, $operator, $value);
|
|
|
|
public function getByField($field, $value);
|
|
|
|
public function log($id, $module, $action, $remarks = '');
|
|
}
|