• Czas czytania ~1 min
  • 10.07.2022

Projekt Laravel Notification Channels ma teraz kanał powiadomień Google Chat dla Laravel. Ten pakiet ułatwia wysyłanie powiadomień za pomocą niestandardowego kanału wiadomości Google Chat:Możesz także wykonać proste formatowanie i zaawansowane układy kart za pomocą klas dostarczonych przez pakiet:Wreszcie, ten pakiet ma koncepcję "alternatywnych" pokoi, które możesz skonfigurować tak, aby jawnie wysyłał wiadomości do pokoju czatu Google zamiast domyślnego:

// Create a super simple message
public function toGoogleChat($notifiable)
{
    return GoogleChatMessage::create('An invoice was paid!');
}

// Simple text formatting and routing to a specific chat room
GoogleChatMessage::create()
    ->text('Someone just paid an invoice... ')
    ->bold('Woo-hoo!')
    ->line('Looking for ')
    ->link(route('invoices'), 'the details?')
    ->to('sales_team'); // ... and route it to specific rooms

// Advanced card layout
GoogleChatMessage::create()
    ->text('Invoice Paid! Here\'s the details:')
    ->card(
        Card::create(
            Section::create(
                KeyValue::create('Amount', '$520.99', '#10004756')
                    ->onClick(route('invoices'))
                    ->button(TextButton::create(route('invoices'), 'View'))
            )
        )
    );

// config/google-chat.php
return [
    'spaces' => [
        'dev_team' => 'https://chat.googleapis.com/dev-team-room?key=xxxxx',
        // ...
    ]
];
// Usage
GoogleChatMessage::create()->to('dev_team')->...

Dowiedz się więcej

Możesz dowiedzieć się więcej o tym pakiecie, uzyskać pełne instrukcje instalacji i wyświetlić kod źródłowy w witrynie GitHub.You can learn more about this package, get full installation instructions, and view the source code on GitHub. Zapoznaj się z dokumentacją kanałów powiadomień Laravel, aby uzyskać szczegółowe informacje na temat konfiguracji i użycia.

Comments

No comments yet
Yurij Finiv

Yurij Finiv

Full stack

O

Professional Fullstack Developer with extensive experience in website and desktop application development. Proficient in a wide range of tools and technologies, including Bootstrap, Tailwind, HTML5, CSS3, PUG, JavaScript, Alpine.js, jQuery, PHP, MODX, and Node.js. Skilled in website development using Symfony, MODX, and Laravel. Experience: Contributed to the development and translation of MODX3 i...

O autorze CrazyBoy49z
WORK EXPERIENCE
Kontakt
Ukraine, Lutsk
+380979856297