*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'tenant_code' => $this->tenant_code, 'tenant_name' => $this->tenant_name, 'phone' => $this->phone, 'email' => $this->email, 'address' => $this->address, 'status' => $this->status, 'created_at' => $this->created_at, 'updated_at' => $this->updated_at, ]; } }