Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Sunshine And March Vibes (2025 Wallpapers Edition)

      May 16, 2025

      The Case For Minimal WordPress Setups: A Contrarian View On Theme Frameworks

      May 16, 2025

      How To Fix Largest Contentful Paint Issues With Subpart Analysis

      May 16, 2025

      How To Prevent WordPress SQL Injection Attacks

      May 16, 2025

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025

      Minecraft licensing robbed us of this controversial NFL schedule release video

      May 16, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      The power of generators

      May 16, 2025
      Recent

      The power of generators

      May 16, 2025

      Simplify Factory Associations with Laravel’s UseFactory Attribute

      May 16, 2025

      This Week in Laravel: React Native, PhpStorm Junie, and more

      May 16, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025
      Recent

      Microsoft has closed its “Experience Center” store in Sydney, Australia — as it ramps up a continued digital growth campaign

      May 16, 2025

      Bing Search APIs to be “decommissioned completely” as Microsoft urges developers to use its Azure agentic AI alternative

      May 16, 2025

      Microsoft might kill the Surface Laptop Studio as production is quietly halted

      May 16, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Wirechat – Laravel Livewire chat package

    Wirechat – Laravel Livewire chat package

    December 20, 2024

    Wirechat - Laravel Livewire chat package

    Wirechat is a new and powerful Laravel Livewire chat package created by Namu Makwembo that brings real-time private and group communication to your application.

    Key Features

    1. Realtime Messaging and Search
    2. Built with Livewire components
    3. Ideal for teams and communities as you can create groups, edit members, add admins, edit group permissions and more.
    4. Smart message deletion that won’t interrupt the entire conversation for other users.
    5. Share media and other attachments
    6. Reply to messages, files and attachments in the conversation
    7. Customizable Theme (including Dark mode)

    Installation

    Before you install this package, ensure you are running:

    • PHP version 8.1 or later
    • Laravel version 10 or later
    • Livewire version 3.2.3 or later

    To install this package, run:

    composer require namu/wirechat
    

    Then publish the config and migration files, as well as symlink the storage directory for shared media and attachments:

    php artisan wirechat:install
    

    Next, run the migrations:

    php artisan migrate
    

    This package also depends on queues and web sockets using Laravel Reverb. So also ensure those are setup and running before starting your application.

    php artisan install:broadcasting
    php artisan reverb:start
    php artisan queue:work --queue=messages,default
    

    To begin using WireChat, ensure you integrate the Chatable trait into the models you want to enable for chatting.

    use IlluminateFoundationAuthUser as Authenticatable;
    use NamuWireChatTraitsChatable;
    
    class User extends Authenticatable
    {
          use Chatable;
    
          ...
    }
    

    Now you should be able to navigate to /chats in your application, search for and select a user to start a conversation with.

    Options are also available for you to programmatically start chats, send messages, etc.

    You can learn more about this package in the documentation and also view the source code on GitHub.


    The post Wirechat – Laravel Livewire chat package appeared first on Laravel News.

    Join the Laravel Newsletter to get all the latest
    Laravel articles like this directly in your inbox.

    Source: Read More 

    Hostinger
    Facebook Twitter Reddit Email Copy Link
    Previous ArticleLaravel VS Code Extension Public Beta
    Next Article Customize the Truncation of HTTP Client Request Exceptions

    Related Posts

    Security

    Nmap 7.96 Launches with Lightning-Fast DNS and 612 Scripts

    May 17, 2025
    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-4831 – TOTOLINK HTTP POST Request Handler Buffer Overflow Vulnerability

    May 17, 2025
    Leave A Reply Cancel Reply

    Continue Reading

    Gisto – code snippet manager

    Linux

    Error Reply Message Mismatch 595 (0x253): How to Fix it

    Operating Systems

    CVE-2025-4119 – Weitong Mall Product Statistics Handler Improper Access Controls

    Common Vulnerabilities and Exposures (CVEs)

    ToolSandbox LLM Tool-Use Benchmark Released by Apple: A Conversational and Interactive Evaluation Benchmark for LLM Tool-Use Capabilities

    Development

    Highlights

    Development

    Comwave Networks Faces Alleged Cyberattack from Medusa Ransomware Group

    May 21, 2024

    The Medusa ransomware group has allegedly claimed a cyberattack on Comwave, a Canadian communications giant.…

    Building Efficient Three.js Scenes

    February 14, 2025

    ChatGPT’s Advanced Voice Mode gets a big upgrade (for free users, too)

    March 25, 2025

    CISA: Hackers Breached Chemical Facilities’ Data in January

    June 25, 2024
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.