*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'name' => $this->name, 'email' => $this->email, 'created_at' => Carbon::parse($this->created_at)->format('M d Y'), 'updated_at' => Carbon::parse($this->updated_at)->format('M d Y'), ]; } }