<?php
namespace CamilStaps\BotleaguesApi;

class BotController extends BaseController {

	protected $bot;

	public function __construct(Bot $bot) {
		$this->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.");
	}

}