response->paginator($contacts, new Transformer()); } /** * Display the specified resource. * * @param int|string $id * @return \Dingo\Api\Http\Response */ public function show($id) { // Check if we're querying by id or email if (is_numeric($id)) { $contact = Contact::find($id); } else { $contact = Contact::where('email', $id)->first(); } return $this->response->item($contact, new Transformer()); } /** * Store a newly created resource in storage. * * @param $request * @return \Dingo\Api\Http\Response */ public function store(Request $request) { $contact = $this->dispatch(new CreateContact($request)); return $this->response->created(route('api.contacts.show', $contact->id)); } /** * Update the specified resource in storage. * * @param $contact * @param $request * @return \Dingo\Api\Http\Response */ public function update(Contact $contact, Request $request) { $contact = $this->dispatch(new UpdateContact($contact, $request)); return $this->item($contact->fresh(), new Transformer()); } /** * Enable the specified resource in storage. * * @param Contact $contact * @return \Dingo\Api\Http\Response */ public function enable(Contact $contact) { $contact = $this->dispatch(new UpdateContact($contact, request()->merge(['enabled' => 1]))); return $this->item($contact->fresh(), new Transformer()); } /** * Disable the specified resource in storage. * * @param Contact $contact * @return \Dingo\Api\Http\Response */ public function disable(Contact $contact) { try { $contact = $this->dispatch(new UpdateContact($contact, request()->merge(['enabled' => 0]))); return $this->item($contact->fresh(), new Transformer()); } catch(\Exception $e) { $this->response->errorUnauthorized($e->getMessage()); } } /** * Remove the specified resource from storage. * * @param Contact $contact * @return \Dingo\Api\Http\Response */ public function destroy(Contact $contact) { try { $this->dispatch(new DeleteContact($contact)); return $this->response->noContent(); } catch(\Exception $e) { $this->response->errorUnauthorized($e->getMessage()); } } }