ChatUnit.php 313 B

12345678910111213141516171819
  1. <?php
  2. namespace App\View\Components;
  3. use Illuminate\View\Component;
  4. class ChatUnit extends Component {
  5. public $user;
  6. public $ticket;
  7. public function __construct($user, $ticket) {
  8. $this->user = $user;
  9. $this->ticket = $ticket;
  10. }
  11. public function render() {
  12. return view('components.chat-unit');
  13. }
  14. }