2020-01-26 08:47:05 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace Webkul\Velocity\Repositories;
|
|
|
|
|
|
|
|
|
|
use Webkul\Core\Eloquent\Repository;
|
|
|
|
|
|
|
|
|
|
class VelocityMetadataRepository extends Repository
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Specify Model class name
|
|
|
|
|
*
|
2020-03-05 13:37:08 +00:00
|
|
|
* @return string
|
2020-01-26 08:47:05 +00:00
|
|
|
*/
|
|
|
|
|
function model()
|
|
|
|
|
{
|
2020-03-07 06:13:22 +00:00
|
|
|
return 'Webkul\Velocity\Contracts\VelocityMetadata';
|
2020-01-26 08:47:05 +00:00
|
|
|
}
|
|
|
|
|
}
|