| 12345678910111213141516171819202122 |
- <?php
- namespace App\Model;
- use Illuminate\Database\Eloquent\Model;
- use App\Model\Privillage\Role;
- use App\Model\MetadatProgram;
- use Auth;
- use Illuminate\Database\Eloquent\SoftDeletes;
- class MetadataProgramNotificationRead extends Model
- {
- protected $table = 'metadata_program_notification_read';
- protected $fillable = [
- 'id',
- 'id_metadata_program_notification',
- 'id_user',
- 'created_at',
- 'updated_at',
- ];
- }
|