File "AttachmentRepository.php"

Full Path: /home/trinadezambia/public_html/admin_panel/app/Repositories/Attachment/AttachmentRepository.php
File size: 299 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Repositories\Attachment;

use App\Models\Attachment;
use App\Repositories\Base\BaseRepository;

class AttachmentRepository extends BaseRepository implements AttachmentInterface {

    public function __construct(Attachment $model) {
        parent::__construct($model);
    }
}