2021-01-01 21:01:23 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2023-02-26 01:08:40 +00:00
|
|
|
/**
|
|
|
|
* @deprecated This model will be removed in a future release
|
|
|
|
*/
|
2021-01-01 21:01:23 +00:00
|
|
|
class OneoffApplicant extends Model
|
|
|
|
{
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
public function application()
|
|
|
|
{
|
|
|
|
return $this->belongsTo('App\Application', 'id', 'application_id');
|
|
|
|
}
|
|
|
|
}
|