Crud.php 166 B

12345678910
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Crud extends Model
  5. {
  6. protected $fillable = ['title','post','date','type', 'last_modifit'];
  7. }