File "NotificationRepository.php"
Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/FeesPaid/NotificationRepository.php
File size: 324 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace App\Repositories\Notification;
use App\Models\Notification;
use App\Repositories\Saas\SaaSRepository;
class NotificationRepository extends SaaSRepository implements NotificationInterface {
public function __construct(Notification $model) {
parent::__construct($model,'notification');
}
}