Created
May 22, 2017 09:02
-
-
Save besabellacyrus/374f31b8605006ac740b3aa35157194a to your computer and use it in GitHub Desktop.
Fuelcms relationship
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$data['doctor'] = fuel_model( | |
'doctors', | |
array( | |
'find' => 'one', | |
'where' => array('name' => $name), | |
'return_method' => 'object' | |
) | |
); | |
then in your view | |
foreach ($doctor->specialties as $s) { | |
$s->title; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment