demo_restaurant = app(DemoRestaurant::class); } /** * Returns count of demo. * * @param array $filter * * @return int */ public function count() { return 0; } /** * Find demo by slug. * * @param array $filter * * @return int */ public function demo($slug) { return $this->demo ->findBySlug($slug) ->toArray(); } }