15 lines
		
	
	
		
			226 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			226 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Models;
 | 
						|
 | 
						|
use Illuminate\Database\Eloquent\Model;
 | 
						|
 | 
						|
class Webhook extends Model
 | 
						|
{
 | 
						|
    protected $guarded = [];
 | 
						|
    protected $casts = [
 | 
						|
        'type' => 'string',
 | 
						|
        'payload' => 'encrypted',
 | 
						|
    ];
 | 
						|
}
 |