Is there any way to find a record using ORM in fuelphp if the primary key of the table is not id
column?
For example, listing_id
is my primary key. And I couldn't get the desired result with:
$listing_id = Input::get('listing_id');
$entry = Model_ExampleData::find($listing_id);