Example #1
0
 /**
  * Get related category.
  *
  * @return \Yajra\CMS\Entities\Article
  */
 public function category()
 {
     $category = $this->fluentParameters()->get('category_id', 0);
     $categoryId = explode(':', $category)[0];
     return Category::findOrNew($categoryId);
 }