bot = $bot; } public function index() { return $this->bot->all(); } public function show($id) { return $this->bot->findOrFail($id); } public function update($id) { throw new \Exception("Not implemented yet."); } public function store() { throw new \Exception("Not implemented yet."); } }