Blame view

app/Models/Contact.php 403 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 Contact extends Model
  {
      use HasFactory;
ad1c26f2f   Андрей Ларионов   Админка - контакт...
11
12
13
14
15
  
      protected  $fillable = ['email', 'telephone', 'title', 'title_t', 'description',
                  'whatapp', 'telegram', 'title1', 'title2', 'title3', 'text1', 'text2', 'text3',
                  'year', 'conf'
          ];
242debab8   thesolarwind   Первый коммит в п...
16
  }