MetadataProgramNotificationRead.php 461 B

12345678910111213141516171819202122
  1. <?php
  2. namespace App\Model;
  3. use Illuminate\Database\Eloquent\Model;
  4. use App\Model\Privillage\Role;
  5. use App\Model\MetadatProgram;
  6. use Auth;
  7. use Illuminate\Database\Eloquent\SoftDeletes;
  8. class MetadataProgramNotificationRead extends Model
  9. {
  10. protected $table = 'metadata_program_notification_read';
  11. protected $fillable = [
  12. 'id',
  13. 'id_metadata_program_notification',
  14. 'id_user',
  15. 'created_at',
  16. 'updated_at',
  17. ];
  18. }