emotality/tawk-laravel

A tawk.to chat widget for Laravel.

v2.1 2021-08-07 02:57 UTC

This package is auto-updated.

Last update: 2024-04-07 08:40:42 UTC


README

License Latest Version Total Downloads

tawk.to has a lot of integrations, but not for Laravel. This is a tawk.to chat widget for Laravel.

68747470733a2f2f656d6f74616c6974792e636f6d2f646576656c6f706d656e742f4769744875622f7461776b2d6c61726176656c2d322e706e67

Requirements

  • PHP 7.0+
  • Laravel 5.5+

If you don't meet the requirements, feel free to try version 2.0

Installation

  1. composer require emotality/tawk-laravel
  2. php artisan vendor:publish --provider="Emotality\TawkTo\TawkToServiceProvider"
  3. Add your chat link to your .env file:
TAWKTO_LINK="https://tawk.to/chat/{property_key}/{widget_key}"

Get your link from the Direct Chat Link field from your dashboard

Usage

Just echo the widget code in your app layout blade inside the body tag:

        ...
        {{ \TawkTo::widgetCode() }}
    </body>
</html>

Or, if you don't want to use a config file, you can set your link directly like this:

        ...
        {{ \TawkTo::widgetCode('your_direct_chat_link') }}
    </body>
</html>

License

tawk-laravel is released under the MIT license. See LICENSE for details.