Files
LittleBeast/view/openprovider/listcustomers.maron
2026-04-27 20:12:54 +09:00

31 lines
955 B
Plaintext

{@ include(common/header) @}
顧客様の追加<br />
検索<br />
{@ if (isset($data['data']['results'])) @}
<table>
<thead>
<tr>
<th>名前</th>
<th>会社名</th>
<th>メールアドレス</th>
<th>ハンドル</th>
<th>メモ</th>
</tr>
</thead>
<tbody>
{@ foreach ($data['data']['results'] as $d) @}
<tr>
<td><a href="/openprovider/getcustomer/{{ $d['handle'] }}">{{ $d['name']['full_name'] }}</a></td>
<td>{{ $d['company_name'] }}</td>
<td>{{ $d['email'] }}</td>
<td>{{ $d['handle'] }}</td>
<td></td>
</tr>
{@ endforeach @}
</tbody>
</table>
<p>結果数:{{ $data['data']['total'] }}</p>
{@ else @}
<p>何も見つけられませんでした。</p>
{@ endif @}
{@ include(common/footer) @}