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