public function getMerchantRelationsFullMeta() { $user = new User(); $website = new Website(); $director = new Director(); $address = new \App\Models\Address(); $bank = new Bank(); $brand = new Brand(); $merchantFullMeta = ['user' => $user->getMeta(), 'merchant' => [$this->getMeta()], 'bank' => [$bank->getMeta()], 'address' => [$address->getMeta()], 'brand' => [$brand->getMeta()], 'websites' => [$website->getMeta()], 'directors' => [$director->getMeta()]]; return $merchantFullMeta; }