20 lines
362 B
PHP
20 lines
362 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class AboutMe extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'about_me';
|
|
protected $fillable = ['title', 'description', 'image'];
|
|
|
|
public function skills()
|
|
{
|
|
return $this->hasMany(Skill::class);
|
|
}
|
|
}
|