|TreasuryLaunch newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch newQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch query() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereAmount($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereDescription($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereFinancialPlanAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereFromAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereIsReconciled($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereLaunchDate($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereOrigin($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereReferenceId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereReferenceTable($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereToAccountId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereTransactionType($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryLaunch whereUserId($value) * @mixin \Eloquent */ class TreasuryLaunch extends Model { use HasFactory; protected $table = 'treasury_launches'; protected $guarded = [ 'id', // Add more fields that shouldn't be edited here ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', // Add your casts here (e.g., 'is_active' => 'boolean') ]; // Relationships // Business Logic Methods // Custom Finders // Query Scopes }