|
<?php
|
|
|
|
namespace App\Contracts;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
interface PasswordLogsResourceInterface
|
|
{
|
|
|
|
public function store($admin_id,$password,$created_by, $is_generated = false);
|
|
|
|
public function getByField($data);
|
|
|
|
public function getLastLog($admin_id);
|
|
|
|
} |