.
This commit is contained in:
30
app/Confirm.php
Normal file
30
app/Confirm.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
|
||||
namespace App;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* App\Confirm
|
||||
*
|
||||
* @property int $id
|
||||
* @property int $company_id
|
||||
* @property int $term_id
|
||||
* @property string $term_date
|
||||
* @property \Carbon\Carbon|null $created_at
|
||||
* @property \Carbon\Carbon|null $updated_at
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereCompanyId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereTermDate($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereTermId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|\App\Confirm whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class Confirm extends Model
|
||||
{
|
||||
protected $fillable = [
|
||||
'company_id', 'term_id', 'term_date',
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user