|Tbr newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Tbr newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Tbr query() * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereFnmPercentage($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereMaintenancePercentage($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereRoyaltiesPercentage($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereTbrValue($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Tbr whereYear($value) * @mixin \Eloquent */ class Tbr extends Model { use HasFactory; protected $table = 'tbrs'; protected $guarded = ['id']; protected $casts = [ 'tbr_value' => 'decimal:2', 'royalties_percentage' => 'decimal:4', 'fnm_percentage' => 'decimal:4', 'maintenance_percentage' => 'decimal:4', 'created_at' => 'datetime', 'updated_at' => 'datetime', ]; }