-
Would there be much use case for being able to delegate attributes on Eloquent ORM models. Similar to how rails handles this? (http://apidock.com/rails/Module/delegate). A possible implementation migh…
-
I am thinking about this for some time now and yesterday Taylor (@taylorotwell) asked for feature requests on Twitter for 4.1 and beyond. So I want to propose this and hear your opinions:
Laravel mak…
-
Similar to http://laravel.com/docs/database/eloquent, we should allow eloquent-like ORM ability to Cysha in order to accommodate for more ease of transition for developers using ORM previously, or por…
-
I know this makes sense for some, but I think that for some cases it don't.
Example: in my application I have two main namespaces: `\Model` and `\API`. There's a lot of classes with the same name (li…
-
Hi Taylor,
after yesterday fix for standalone database lib, the events still don't fire.
I can't follow the entire architecture, but I see the Model not getting the dispatcher from the DatabaseManag…
Surt updated
11 years ago
-
Would be interesting if the form functionality could be augmented to support reading in eloquent model metadata to automatically create fields.
An array could be used to "include" or "omit" fields to…
-
Hi I'm having trouble with generating html output at laravel server side.
With Javascript Disabled in Google Chrome, there are posts BUT without comments in /posts/{id}.
Here's my route.
``` php
…
-
I am trying to set the package on a Laravel 4 installation, The docs aren't clear about what to do for laravel and what to do for other implementations.
Model:
``` php
use LaravelBook\Ardent\Arden…
-
Probably not a hugely relevant issue, but I'm using Illuminate/Database with CodeIgniter on a client project and it seems https://github.com/laravel/framework/commit/d953931fd77906d2dfce4eacd4a2d2f6d3…
-
Apparently in Laravel's 3 Eloquent the following is possible:
$comments = array(
array('message' => 'A new comment.'),
array('message' => 'A second comment.'),
);
$post = Post::find(1);
$po…