json(Domain::all()->toArray()); } public function create(Request $request) { $title = $request->get(key:'name'); $domain = new Domain(); $domain->name =$title; $domain->save(); return response()->json($domain->toJson()); } }