芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/yeahea.digitalhubbd.com/app/Models/FaqTopic.php
hasMany(Faq::class, 'faq_topic_id'); } /** * Get the faqs associated with the topic. */ public function hasFaqs() { return $this->faqs->count(); } /** * Scope a query to only include Merchant topics. * * @return \Illuminate\Database\Eloquent\Builder */ public function scopeMerchant($query) { return $query->where('for', 'Merchant'); } }