emrahoruc

Results 5 issues of emrahoruc

$this->soft_deletes = true; This is not affect the count_row function. Quick fix: ``` php public function count_rows($where = NULL)` { if(isset($where)) { $this->where($where); } /*add this*/ elseif($this->soft_deletes===TRUE) { $this->_where_trashed(); }...

Hi, Question is how can i handle/declare an error in before_create function then skip inserting database and return to the form without loosing $post data? Thanks.

`v::identityCard(string $countryCode)` https://respect-validation.readthedocs.io/en/1.1/rules/IdentityCard/ The **identityCard** rule currently only accepts verifying the Polish Identity Card numbers. I added my own rule. But... I couldn't add the classes to my own namespace(MyApp),...

Hi, I am using the timescaledb-ha Docker image (pg17.6-ts2.22.0) and I noticed that pgBackRest is included. However, I cannot find any documentation or examples. How to use it with this...