Files
ProxyPanel/app/View/Components/ChatUnit.php
2024-06-27 22:18:21 +08:00

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');
}
}