File "PackageRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Package/PackageRepository.php
File size: 293 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Package;
use App\Models\Package;
use App\Repositories\Base\BaseRepository;
class PackageRepository extends BaseRepository implements PackageInterface {
public function __construct(Package $model) {
parent::__construct($model,'package');
}
}