1. Go to this page and download the library: Download aleahy/mailgun-logger 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/ */
aleahy / mailgun-logger example snippets
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddColumnsToWebhookCalls extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up(): void
{
Schema::table('webhook_calls', function (Blueprint $table) {
$table->string('url')->nullable();
$table->json('headers')->nullable();
$table->json('payload')->change();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down(): void
{
Schema::table('webhook_calls', function (Blueprint $table) {
$table->dropColumn('url');
$table->dropColumn('headers');
$table->text('payload')->change();
});
}
}