Updates to 03-2025
This commit is contained in:
parent
6167273a48
commit
9b54eb0512
348 changed files with 34535 additions and 5774 deletions
43
app/Models/LeadType.php
Normal file
43
app/Models/LeadType.php
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* Created by Reliese Model.
|
||||
*/
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Carbon\Carbon;
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
/**
|
||||
* Class LeadType
|
||||
*
|
||||
* @property int $id
|
||||
* @property string $name
|
||||
* @property bool $active
|
||||
* @property Carbon|null $created_at
|
||||
* @property Carbon|null $updated_at
|
||||
* @package App\Models
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType newModelQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType newQuery()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType query()
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType whereActive($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType whereCreatedAt($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType whereId($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType whereName($value)
|
||||
* @method static \Illuminate\Database\Eloquent\Builder|LeadType whereUpdatedAt($value)
|
||||
* @mixin \Eloquent
|
||||
*/
|
||||
class LeadType extends Model
|
||||
{
|
||||
protected $table = 'lead_type';
|
||||
|
||||
protected $casts = [
|
||||
'active' => 'bool'
|
||||
];
|
||||
|
||||
protected $fillable = [
|
||||
'name',
|
||||
'active'
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue