public function store() { $data = Request::all(); $entry = new Entry(); $entry->fill($data); $entry->save(); return response()->json($entry); }