d0d74cdb96
Fixed User Pictures
13 lines
161 B
PHP
13 lines
161 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AllowAction extends Model
|
|
{
|
|
protected $fillable = [
|
|
'action', 'allow'
|
|
];
|
|
}
|