Blame view

app/Models/News.php 231 Bytes
242debab8   thesolarwind   Первый коммит в п...
1
2
3
4
5
6
7
8
9
10
  <?php
  
  namespace App\Models;
  
  use Illuminate\Database\Eloquent\Factories\HasFactory;
  use Illuminate\Database\Eloquent\Model;
  
  class News extends Model
  {
      use HasFactory;
3575d19ae   Андрей Ларионов   Админка новости и...
11
12
  
      protected  $fillable = ['title', 'text', 'foto'];
242debab8   thesolarwind   Первый коммит в п...
13
  }