mirror of
https://github.com/ProxyPanel/ProxyPanel.git
synced 2026-04-07 04:59:36 +00:00
24 lines
357 B
PHP
24 lines
357 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');
|
|
}
|
|
}
|