25 lines
360 B
PHP
25 lines
360 B
PHP
<?php
|
|
|
|
namespace App\Repositories\Faqs;
|
|
|
|
use App\Models\Faq;
|
|
use App\Repositories\AbstractRepository;
|
|
|
|
class FaqRepository extends AbstractRepository implements FaqContractInterface
|
|
{
|
|
|
|
public function __construct(Faq $faq)
|
|
{
|
|
parent::__construct($faq);
|
|
}
|
|
|
|
public function intdex()
|
|
{
|
|
|
|
}
|
|
|
|
public function store()
|
|
{
|
|
|
|
}
|
|
} |