mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
20 lines
312 B
PHP
20 lines
312 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\View\Component;
|
|
|
|
class ChatUnit extends Component {
|
|
public $user;
|
|
public $ticket;
|
|
|
|
public function __construct($user, $ticket) {
|
|
$this->user = $user;
|
|
$this->ticket = $ticket;
|
|
}
|
|
|
|
public function render() {
|
|
return view('components.chat-unit');
|
|
}
|
|
}
|