|Bank newModelQuery() * @method static \Illuminate\Database\Eloquent\Builder|Bank newQuery() * @method static \Illuminate\Database\Eloquent\Builder|Bank onlyTrashed() * @method static \Illuminate\Database\Eloquent\Builder|Bank query() * @method static \Illuminate\Database\Eloquent\Builder|Bank whereActive($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereCode($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereCreatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereDeletedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereId($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereName($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank whereUpdatedAt($value) * @method static \Illuminate\Database\Eloquent\Builder|Bank withTrashed(bool $withTrashed = true) * @method static \Illuminate\Database\Eloquent\Builder|Bank withoutTrashed() * @mixin \Eloquent */ class Bank extends Model { use HasFactory, SoftDeletes; protected $table = 'banks'; protected $guarded = ['id']; protected $fillable = [ 'name', 'code', 'active', ]; protected $casts = [ 'created_at' => 'datetime', 'updated_at' => 'datetime', 'deleted_at' => 'datetime', 'active' => 'boolean', ]; }