23 lines
381 B
PHP
Executable File
23 lines
381 B
PHP
Executable File
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface OtpLogResourceInterface
|
|
{
|
|
|
|
public function store($lcard_id,$data);
|
|
|
|
public function getByField($data);
|
|
|
|
public function getLastLog($lcard_id);
|
|
|
|
public function setUsed($id);
|
|
|
|
public function getLastLog_limit($limit,$card_number);
|
|
|
|
public function getLastLogByNumber($number);
|
|
|
|
}
|