File "SectionRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Section/SectionRepository.php
File size: 284 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Section;
use App\Models\Section;
use App\Repositories\Saas\SaaSRepository;
class SectionRepository extends SaaSRepository implements SectionInterface {
public function __construct(Section $model) {
parent::__construct($model);
}
}