- Fix EventType deletion error handling (constraint violations) - Fix Event update error (package_id column missing) - Fix Event Type dropdown options (JSON display issue) - Fix EventPackagesRelationManager query error - Add missing translations for deletion errors - Apply Pint formatting
23 lines
373 B
PHP
23 lines
373 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class BlogAuthor extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'blog_authors';
|
|
|
|
protected $fillable = [
|
|
'name',
|
|
'email',
|
|
'photo',
|
|
'bio',
|
|
'github_handle',
|
|
'twitter_handle',
|
|
];
|
|
}
|