У меня есть две таблицы (feasy_marcacao и feasy_servico).На данный момент у меня есть этот код:
<td><?php echo $feasy_marcacao->getServicoId() ?></td>
, но это дает мне номер Id, и я хочу описание для этого идентификатора.Вот моя схема:
FeasyServico:
columns:
descricao: { type: string(255), notnull: true, unique: true }
FeasyMarcacao:
actAs: { Timestampable: ~ }
columns:
nome: { type: string(255), notnull: true }
email: { type: string(255), notnull: true }
contacto: { type: string(255), notnull: true }
servico_id: { type: integer, notnull: true }
dia: { type: date, notnull: true }
hora: { type: time, notnull: true }
relations:
FeasyServico: { onDelete: CASCADE, local: servico_id, foreign: id }
Надеюсь, я хорошо все объяснил.Спасибо за ваше время.