Add routes, controllers, models and views
This commit is contained in:
parent
683a041cbb
commit
80d8f78863
1 changed files with 10 additions and 0 deletions
10
app/Models/WebhookEntry.php
Normal file
10
app/Models/WebhookEntry.php
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class WebhookEntry extends Model
|
||||
{
|
||||
protected $fillable = ['source', 'payload', 'headers'];
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue