JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr gilour

File "Webhook.php"

Full Path: /home/sibcards/public_html/app/Models/Webhook.php
File size: 491 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace App\Models;

use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;

class Webhook extends Model
{
    use HasFactory;
    protected $fillable = [
        'module',
        'method',
        'url',
        'created_by',
    ];

    public static $module= [
        'New User' => 'New User',
        'New Appointment' => 'New Appointment',
    ];
    public static $method= [
        'Get' => 'Get',
        'Post' => 'Post',
    ];
}