@extends('layouts.app')
@push('page-styles')
@endpush
@section('sidebar')
@endsection
@section('page-content')
@livewire('apps.chat.box',['userId' => request()->get('contact')])
@endsection
@section('vendor-scripts')
@vite([
'resources/js/app/chat/chat-app.js'
])
@endsection