|TreasuryAccount newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount newQuery() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount query() * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereActive($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereBankAccount($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereBankAgency($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereBankName($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereBankTypeAccount($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereTreasuryType($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereUnitId($value) * @method static \Illuminate\Database\Eloquent\Builder|TreasuryAccount whereUpdatedAt($value) * @mixin \Eloquent */ class TreasuryAccount extends Model { use HasFactory; protected $table = 'treasury_accounts'; 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 }