BreakingNews.php 275 B

123456789101112131415161718192021
  1. <?php
  2. namespace App;
  3. use Illuminate\Database\Eloquent\Model;
  4. use Illuminate\Notifications\Notifiable;
  5. class BreakingNews extends Model
  6. {
  7. use Notifiable;
  8. protected $fillable = [
  9. 'title',
  10. 'online',
  11. 'date',
  12. 'position'
  13. ];
  14. }