芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Models/Faq.php
belongsTo(FaqTopic::class, 'faq_topic_id'); } /** * Get the question with replaced placeholder. * * @return string */ public function getQuestionAttribute($question) { return str_replace([':marketplace_url', ':marketplace'], ['
' . url('/') . '
', get_platform_title()], $question); } /** * Get the question with replaced placeholder. * * @return string */ public function getAnswerAttribute($answer) { return str_replace([':marketplace_url', ':marketplace'], ['
' . url('/') . '
', get_platform_title()], $answer); } }