2019-02-18 07:30:40 +00:00
|
|
|
<?php
|
2018-07-31 07:50:54 +00:00
|
|
|
|
|
|
|
|
namespace Webkul\User\Repositories;
|
2019-02-18 07:30:40 +00:00
|
|
|
|
2018-07-31 07:50:54 +00:00
|
|
|
use Webkul\Core\Eloquent\Repository;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Admin Reposotory
|
|
|
|
|
*
|
|
|
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
|
|
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
|
|
|
*/
|
|
|
|
|
class AdminRepository extends Repository
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Specify Model class name
|
|
|
|
|
*
|
|
|
|
|
* @return mixed
|
|
|
|
|
*/
|
|
|
|
|
function model()
|
|
|
|
|
{
|
2019-02-18 07:30:40 +00:00
|
|
|
return 'Webkul\User\Contracts\Admin';
|
2018-07-31 07:50:54 +00:00
|
|
|
}
|
|
|
|
|
}
|