Blame view

app/Models/PageContent.php 290 Bytes
3b2e8c4eb   Сергей П   редактирование бл...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  
  namespace App\Models;
  
  use Illuminate\Database\Eloquent\Factories\HasFactory;
  use Illuminate\Database\Eloquent\Model;
  
  class PageContent extends Model
  {
      use HasFactory;
  
      protected $fillable = [
          'name',
          'title',
          'description',
          'extra'
      ];
  }