forked from miguel456/rbrecruiter
17 lines
222 B
PHP
17 lines
222 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Application extends Model
|
|
{
|
|
public $fillable = [
|
|
|
|
'applicantUserID',
|
|
'applicantFormResponseID',
|
|
'applicantStatus'
|
|
|
|
];
|
|
}
|