2018-09-28 12:54:26 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Sales\Repositories;
|
|
|
|
|
|
|
|
|
|
use Webkul\Core\Eloquent\Repository;
|
2019-04-03 13:21:05 +00:00
|
|
|
use Webkul\Sales\Contracts\OrderAddress;
|
2018-09-28 12:54:26 +00:00
|
|
|
|
|
|
|
|
/**
|
2020-03-05 14:52:20 +00:00
|
|
|
* Order Address Repository
|
2018-09-28 12:54:26 +00:00
|
|
|
*
|
|
|
|
|
* @author Jitendra Singh <jitendra@webkul.com>
|
|
|
|
|
* @copyright 2018 Webkul Software Pvt Ltd (http://www.webkul.com)
|
|
|
|
|
*/
|
|
|
|
|
class OrderAddressRepository extends Repository
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Specify Model class name
|
|
|
|
|
*
|
2020-03-05 14:52:20 +00:00
|
|
|
* @return string
|
2018-09-28 12:54:26 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
function model()
|
|
|
|
|
{
|
2019-04-03 13:21:05 +00:00
|
|
|
return OrderAddress::class;
|
2018-09-28 12:54:26 +00:00
|
|
|
}
|
|
|
|
|
}
|