Here are my models: class Group extends Eloquent { public function members() { return $...
Here are my models: class BookReading extends Eloquent { // Book reading has many authors p...
on album model: public function band() { return $this->belongsTo('Band'); } on...
Is there a way to access data from a query in a page layout? For example, I would like to get the to...
I have this input in my view: {{ Form::text('first_name[]', null, array('class'=>'form-contro...
I figured it out: $book_readings = BookReading::whereIn('location_id', $book_stores) ->w...
Adding a new table...sighs.
im looking at this again tomorrow. i skipped it and moved to other stuff for a while after trying wi...
The Laravel portal for problem solving, knowledge sharing and community building.
The community