| Current Path : /var/www/invoice-sync.bitkit.dk/httpdocs/app/Models/ |
| Current File : /var/www/invoice-sync.bitkit.dk/httpdocs/app/Models/Hooks.php |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Hooks extends Model
{
use HasFactory;
protected $table = 'hooks';
protected $fillable = [
'type',
'hook_details',
'from',
'status',
'app_id',
];
}