mirror of
https://github.com/Aviortheking/CA_LARAVEL.git
synced 2025-04-23 03:12:12 +00:00
15 lines
188 B
PHP
15 lines
188 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Post extends Model
|
|
{
|
|
protected $fillable = [
|
|
'title', 'content'
|
|
];
|
|
|
|
protected $table = 'posts';
|
|
}
|