ごめん

This commit is contained in:
2026-04-27 23:00:14 +09:00
parent 9d6e9ccf9b
commit 430249ebf5
2 changed files with 23 additions and 17 deletions

View File

@@ -190,7 +190,7 @@ class Openprovider {
$curl = $this->setupCurl('/domains/check', 'POST', $payload);
$res = $this->curlResult($curl);
if (isset($res['data']['results'])) return \Result::Success('', $res['data']['results']);
if (isset($res->data['data']['results'])) return \Result::Success('', $res->data['data']['results']);
return \Result::Error('ドメインの確認に失敗。');
}

View File

@@ -2,7 +2,12 @@
顧客様の削除<br />
顧客様のクローン<br />
顧客様の編集<br />
<h2>連絡先:{{ $data['data']['name']['full_name'] }} ({{ $data['data']['handle'] }})</h2>
{$ $addInfo = $data['data']['additional_data'] $}
{$ $name = $data['data']['name'] $}
{$ $phone = $data['data']['phone'] $}
{$ $fax = $data['data']['fax'] $}
{$ $addr = $data['data']['address'] $}
<h2>連絡先:{{ $name['full_name'] }} ({{ $data['data']['handle'] }})</h2>
<table>
<tbody>
<tr>
@@ -23,23 +28,23 @@
</tr>
<tr>
<th>フルネーム</th>
<td>{{ $data['data']['name']['last_name'].' '.$data['data']['name']['first_name'] }}</td>
<td>{{ $name['last_name'].' '.$name['first_name'] }}</td>
</tr>
<tr>
<th>生まれた場所</th>
<td>〒{{ $data['data']['additional_data']['birth_zipcode'].' '.$data['data']['additional_data']['birth_city'].' '.$data['data']['additional_data']['birth_address'].' '.$data['data']['additional_data']['birth_country'] }}</td>
<td>〒{{ $addInfo['birth_zipcode'].' '.$addInfo['birth_city'].' '.$addInfo['birth_address'].' '.$addInfo['birth_country'] }}</td>
</tr>
<tr>
<th>生年月日</th>
<td>{{ $data['data']['additional_data']['birth_date'] }}</td>
<td>{{ $addInfo['birth_date'] }}</td>
</tr>
<tr>
<th>電話番号</th>
<td>{{ $data['data']['phone']['country_code'].$data['data']['phone']['area_code'].$data['data']['phone']['subscriber_number'] }}</td>
<td>{{ $phone['country_code'].$phone['area_code'].$phone['subscriber_number'] }}</td>
</tr>
<tr>
<th>FAX</th>
<td>{{ $data['data']['fax']['country_code'].$data['data']['fax']['area_code'].$data['data']['fax']['subscriber_number'] }}</td>
<td>{{ $fax['country_code'].$fax['area_code'].$fax['subscriber_number'] }}</td>
</tr>
<tr>
<th>メールアドレス</th>
@@ -60,19 +65,20 @@
</tr>
<tr>
<th>会社登録番号</th>
<td>{{ $data['data']['additional_data']['company_registration_number'] }}</td>
<td>{{ $addInfo['company_registration_number'] }}</td>
</tr>
<tr>
<th>会社登録場所</th>
<td>{{ $data['data']['additional_data']['company_registration_city'] }}</td>
<td>{{ $addInfo['company_registration_city'] }}</td>
</tr>
<tr>
<th>会社登録日</th>
<td>{{ $data['data']['additional_data']['company_registration_subscription_date'] }}</td>
<td>{{ $addInfo['company_registration_subscription_date'] }}</td>
</tr>
{$ $link = $addInfo['company_url'] $}
<tr>
<th>会社URL</th>
<td>{{ $data['data']['additional_data']['company_url'] }}</td>
<td><a href="{{ $link }}">{{ $link }}</a></td>
</tr>
</tbody>
</table>
@@ -81,23 +87,23 @@
<tbody>
<tr>
<th>道+番号</th>
<td>{{ $data['data']['address']['street'].$data['data']['address']['number'].' '.$data['data']['address']['suffix'] }}</td>
<td>{{ $addr['street'].$addr['number'].' '.$addr['suffix'] }}</td>
</tr>
<tr>
<th>郵便番号</th>
<td>{{ $data['data']['address']['zipcode'] }}</td>
<td>{{ $addr['zipcode'] }}</td>
</tr>
<tr>
<th>市区町村</th>
<td>{{ $data['data']['address']['city'] }}</td>
<td>{{ $addr['city'] }}</td>
</tr>
<tr>
<th>都道府県</th>
<td>{{ $data['data']['address']['state'] }}</td>
<td>{{ $addr['state'] }}</td>
</tr>
<tr>
<th>国</th>
<td>{{ $data['data']['address']['country'] }}</td>
<td>{{ $addr['country'] }}</td>
</tr>
<tr>
<th>言語</th>
@@ -105,7 +111,7 @@
</tr>
<tr>
<th>本社の場所</th>
<td>〒{{ $data['data']['additional_data']['headquarters_zipcode'].' '.$data['data']['additional_data']['headquarters_city'].' '.$data['data']['additional_data']['headquarters_address'].' '.$data['data']['additional_data']['headquarters_country'] }}</td>
<td>〒{{ $addInfo['headquarters_zipcode'].' '.$addInfo['headquarters_city'].' '.$addInfo['headquarters_address'].' '.$addInfo['headquarters_country'] }}</td>
</tr>
</tbody>
</table>