Blame view
app/Models/News.php
262 Bytes
b80175387 Начальный проект ... |
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; |
1bd0c6ebe Админка, товары. ... |
11 |
|
e73374e87 Каталог ajax, адм... |
12 |
protected $fillable = ['title', 'image', 'text', 'author', 'company', 'status']; |
b80175387 Начальный проект ... |
13 |
} |