unioil-loyalty-app/app/Contracts/LoyaltyCardSignUpInterface.php

23 lines
396 B
PHP
Executable File

<?php
namespace App\Contracts;
use Illuminate\Http\Request;
interface LoyaltyCardSignUpInterface
{
public function store($data);
public function upload_document($request);
public function count_between($from,$to);
public function assign_ref_no($lcard_s_uuid,$ref_no);
public function getByField($data, $relationship = null);
public function listing($params);
}