PHP code example of razorpay / slack-laravel

1. Go to this page and download the library: Download razorpay/slack-laravel library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

razorpay / slack-laravel example snippets


'providers' => [
  Razorpay\Slack\Laravel\ServiceProvider::class,
],

'aliases' => [
  ...
  'Slack' => Razorpay\Slack\Laravel\Facade::class,
],

'providers' => [
  ...
  'Razorpay\Slack\Laravel\ServiceProvider',
],

'aliases' => [
  ...
  'Slack' => 'Razorpay\Slack\Laravel\Facade',
],

// Send a message to the default channel
Slack::send('Hello world!');

// Send a message to a different channel
Slack::to('#accounting')->send('Are we rich yet?');

// Send a private message
Slack::to('@username')->send('psst!');