| 123456789101112131415161718192021 |
- <?php
- namespace App;
- use Illuminate\Database\Eloquent\Model;
- use Illuminate\Notifications\Notifiable;
- class BreakingNews extends Model
- {
- use Notifiable;
-
- protected $fillable = [
- 'title',
- 'online',
- 'date',
- 'position'
- ];
- }
|