athenahr/app/OneoffApplicant.php

20 lines
372 B
PHP
Raw Normal View History

2021-01-01 21:01:23 +00:00
<?php
namespace App;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* @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');
}
}