-
Could you write a little code sample for me to test your library ?
I'm not very familiar with namespaces and PHP-OO yet so it's a little confusing for now.
Thanks !
-
Found this repo and I like what's going on! Cloudflare are certainly upping the ante these days and I'm glad to see a opinionated toolkit for it.
Have you considered using [Drizzle](https://orm.dri…
-
I am sending the following array to the create()
```
array(3) {
["name"]=>
string(4) "cat1"
["company_id"]=>
int(1)
["children"]=> array(1) {
array(2) {
["name"]=>
…
-
Dans baseModel::validate()
ligne 37
tu ecris $validation = Validator::make(Input::all(), $rules, $messages);
c'est pas pas plutot :
$validation = Validator::make($model->attributesToArray(), $rules, …
-
What about using interface with repository classes?
-
after we finished propel 2.0 we should implement some performance benchmarks (in case we have enough time, we could also created them before, to compare e.g. Propel1 & Propel2) for very common usage s…
-
Where is
M
V and
C inside the laravel framework
-
I have an attribute named as "dtinicio" who is casted to date by my model:
``` php
// Model.php
protected $dates = ['dtinicio'];
```
My application uses the format "d/m/Y" by default, so i've implem…
ghost updated
8 years ago
-
Hello,
First of all I'd like to tell you I really like Orator ORM, I've worked previuosly with Laravel's Eloquent :) and I like it too.
Now, I have a scenario for taggable models, very similar t…
-
### Description
The following code:
```php
$conn = oci_connect('DB', 'PASSWORD', '172.17.0.1:51521/XEPDB1');
if (!$conn) {
$e = oci_error();
trigger_error(htmlentities($e['message'…