international.blade.php 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  1. @extends('layouts.app')
  2. @section('content')
  3. <div id="international" class="container-fluid">
  4. @include('service.navTabs')
  5. <h5>국제 금리</h5>
  6. <hr/>
  7. <dl>
  8. <dd>한국수출입은행이 제공하는 국제 금리입니다.</dd>
  9. <dd>SOFR 등 국제금리를 일 기준으로 제공합니다.</dd>
  10. <dd>참조: <a href="https://www.koreaexim.go.kr/wg/HPHKWG052M01#tab3" target="_blank">https://www.koreaexim.go.kr/wg/HPHKWG052M01#tab3</a></dd>
  11. </dl>
  12. <div class="row mb-3">
  13. <div class="col-auto">
  14. <form name="f_service_international" id="fServiceInternational" action="{{ route('service.financial.international') }}" method="get" accept-charset="UTF-8">
  15. <div class="row g-2">
  16. <label for="date" class="col-auto col-form-label">기준일</label>
  17. <div class="col">
  18. <input type="text" name="date" id="date" class="form-control date-picker" value="{{ $date }}" />
  19. </div>
  20. <div class="col-auto">
  21. <button type="submit" class="btn btn-dark">검색</button>
  22. </div>
  23. </div>
  24. </form>
  25. </div>
  26. </div>
  27. <table class="table table-hover table-bordered table-nowrap w-50">
  28. <caption>
  29. <div class="row">
  30. <div class="col">
  31. SOFR
  32. </div>
  33. <div class="col text-end">
  34. <small>조회기준일 : {{ $date }}</small>
  35. </div>
  36. </div>
  37. </caption>
  38. <thead>
  39. <tr>
  40. <th>No</th>
  41. <th>통화</th>
  42. <th>익일물</th>
  43. </tr>
  44. </thead>
  45. <tbody>
  46. @if($sofrList)
  47. @foreach($sofrList as $row)
  48. <tr>
  49. <td>{{ $loop->iteration }}</td>
  50. <td>{{ $row->cur_fund }}</td>
  51. <td>{{ $row->int_r }}</td>
  52. </tr>
  53. @endforeach
  54. @else
  55. <tr>
  56. <td colspan="3">
  57. No data.
  58. </td>
  59. </tr>
  60. @endif
  61. </tbody>
  62. </table>
  63. <table class="table table-hover table-bordered table-nowrap w-50">
  64. <caption>
  65. <div class="row">
  66. <div class="col">
  67. ESTR
  68. </div>
  69. <div class="col text-end">
  70. <small>조회기준일 : {{ $date }}</small>
  71. </div>
  72. </div>
  73. </caption>
  74. <thead>
  75. <tr>
  76. <th>No</th>
  77. <th>통화</th>
  78. <th>익일물</th>
  79. </tr>
  80. </thead>
  81. <tbody>
  82. @if($estrList)
  83. @foreach($estrList as $row)
  84. <tr>
  85. <td>{{ $loop->iteration }}</td>
  86. <td>{{ $row->cur_fund }}</td>
  87. <td>{{ $row->int_r }}</td>
  88. </tr>
  89. @endforeach
  90. @else
  91. <tr>
  92. <td colspan="3">
  93. No data.
  94. </td>
  95. </tr>
  96. @endif
  97. </tbody>
  98. </table>
  99. <table class="table table-hover table-bordered table-nowrap w-50">
  100. <caption>
  101. <div class="row">
  102. <div class="col">
  103. EURIBOR
  104. </div>
  105. <div class="col text-end">
  106. <small>조회기준일 : {{ $date }}</small>
  107. </div>
  108. </div>
  109. </caption>
  110. <thead>
  111. <tr>
  112. <th>No</th>
  113. <th>통화</th>
  114. <th>1월</th>
  115. <th>3월</th>
  116. <th>6월</th>
  117. <th>12월</th>
  118. </tr>
  119. </thead>
  120. <tbody>
  121. @if($euriborList)
  122. @foreach($euriborList as $curFund => $rows)
  123. <tr>
  124. <td>{{ $loop->iteration }}</td>
  125. <td>{{ $curFund }}</td>
  126. @foreach($rows as $row)
  127. <td>{{ $row->int_r }}</td>
  128. @endforeach
  129. </tr>
  130. @endforeach
  131. @else
  132. <tr>
  133. <td colspan="6">
  134. No data.
  135. </td>
  136. </tr>
  137. @endif
  138. </tbody>
  139. </table>
  140. <table class="table table-hover table-bordered table-nowrap w-50">
  141. <caption>
  142. <div class="row">
  143. <div class="col">
  144. TONA
  145. </div>
  146. <div class="col text-end">
  147. <small>조회기준일 : {{ $date }}</small>
  148. </div>
  149. </div>
  150. </caption>
  151. <thead>
  152. <tr>
  153. <th>No</th>
  154. <th>통화</th>
  155. <th>익일물</th>
  156. </tr>
  157. </thead>
  158. <tbody>
  159. @if($tonaList)
  160. @foreach($tonaList as $row)
  161. <tr>
  162. <td>{{ $loop->iteration }}</td>
  163. <td>{{ $row->cur_fund }}</td>
  164. <td>{{ $row->int_r }}</td>
  165. </tr>
  166. @endforeach
  167. @else
  168. <tr>
  169. <td colspan="3">
  170. No data.
  171. </td>
  172. </tr>
  173. @endif
  174. </tbody>
  175. </table>
  176. <table class="table table-hover table-bordered table-nowrap w-50">
  177. <caption>
  178. <div class="row">
  179. <div class="col">
  180. TIBOR
  181. </div>
  182. <div class="col text-end">
  183. <small>조회기준일 : {{ $date }}</small>
  184. </div>
  185. </div>
  186. </caption>
  187. <thead>
  188. <tr>
  189. <th>No</th>
  190. <th>통화</th>
  191. <th>1월</th>
  192. <th>3월</th>
  193. <th>6월</th>
  194. <th>12월</th>
  195. </tr>
  196. </thead>
  197. <tbody>
  198. @if($tiborList)
  199. @foreach($tiborList as $curFund => $rows)
  200. <tr>
  201. <td>{{ $loop->iteration }}</td>
  202. <td>{{ $curFund }}</td>
  203. @foreach($rows as $row)
  204. <td>{{ $row->int_r }}</td>
  205. @endforeach
  206. </tr>
  207. @endforeach
  208. @else
  209. <tr>
  210. <td colspan="6">
  211. No data.
  212. </td>
  213. </tr>
  214. @endif
  215. </tbody>
  216. </table>
  217. <table class="table table-hover table-bordered table-nowrap w-50">
  218. <caption>
  219. <div class="row">
  220. <div class="col">
  221. SWAP(RFR)
  222. </div>
  223. <div class="col text-end">
  224. <small>조회기준일 : {{ $date }}</small>
  225. </div>
  226. </div>
  227. </caption>
  228. <thead>
  229. <tr>
  230. <th>No</th>
  231. <th>통화</th>
  232. <th>6월</th>
  233. <th>12월</th>
  234. <th>2년</th>
  235. </tr>
  236. </thead>
  237. <tbody>
  238. @if($swapRfrList)
  239. @foreach($swapRfrList as $curFund => $rows)
  240. <tr>
  241. <td>{{ $loop->iteration }}</td>
  242. <td>{{ $curFund }}</td>
  243. @foreach($rows as $row)
  244. <td>{{ $row->int_r }}</td>
  245. @endforeach
  246. </tr>
  247. @endforeach
  248. @else
  249. <tr>
  250. <td colspan="5">
  251. No data.
  252. </td>
  253. </tr>
  254. @endif
  255. </tbody>
  256. </table>
  257. <table class="table table-hover table-bordered table-nowrap w-50">
  258. <caption>
  259. <div class="row">
  260. <div class="col">
  261. LIBOR
  262. </div>
  263. <div class="col text-end">
  264. <small>조회기준일 : {{ $date }}</small>
  265. </div>
  266. </div>
  267. </caption>
  268. <thead>
  269. <tr>
  270. <th>No</th>
  271. <th>통화</th>
  272. <th>1월</th>
  273. <th>3월</th>
  274. <th>6월</th>
  275. <th>12월</th>
  276. </tr>
  277. </thead>
  278. <tbody>
  279. @if($liborList)
  280. @foreach($liborList as $curFund => $rows)
  281. <tr>
  282. <td>{{ $loop->iteration }}</td>
  283. <td>{{ $curFund }}</td>
  284. @foreach($rows as $row)
  285. <td>{{ $row->int_r ?? 0 }}</td>
  286. @endforeach
  287. </tr>
  288. @endforeach
  289. @else
  290. <tr>
  291. <td colspan="6">
  292. No data.
  293. </td>
  294. </tr>
  295. @endif
  296. </tbody>
  297. </table>
  298. <table class="table table-hover table-bordered table-nowrap w-50">
  299. <caption>
  300. <div class="row">
  301. <div class="col">
  302. SWAP(LIBOR)
  303. </div>
  304. <div class="col text-end">
  305. <small>조회기준일 : {{ $date }}</small>
  306. </div>
  307. </div>
  308. </caption>
  309. <thead>
  310. <tr>
  311. <th>No</th>
  312. <th>통화</th>
  313. <th>6월</th>
  314. <th>12월</th>
  315. <th>2년</th>
  316. </tr>
  317. </thead>
  318. <tbody>
  319. @if($swapList)
  320. @foreach($swapList as $curFund => $rows)
  321. <tr>
  322. <td>{{ $loop->iteration }}</td>
  323. <td>{{ $curFund }}</td>
  324. @foreach($rows as $row)
  325. <td>{{ $row->int_r ?? 0 }}</td>
  326. @endforeach
  327. </tr>
  328. @endforeach
  329. @else
  330. <tr>
  331. <td colspan="5">
  332. No data.
  333. </td>
  334. </tr>
  335. @endif
  336. </tbody>
  337. </table>
  338. <table class="table table-hover table-bordered table-nowrap w-50">
  339. <caption>
  340. <div class="row">
  341. <div class="col">
  342. CIRR
  343. </div>
  344. <div class="col text-end">
  345. <small>조회기준일 : {{ $date }}</small>
  346. </div>
  347. </div>
  348. </caption>
  349. <thead>
  350. <tr>
  351. <th>No</th>
  352. <th>통화</th>
  353. <th>6월</th>
  354. <th>12월</th>
  355. <th>2년</th>
  356. </tr>
  357. </thead>
  358. <tbody>
  359. @if($cirrList)
  360. @foreach($cirrList as $curFund => $rows)
  361. <tr>
  362. <td>{{ $loop->iteration }}</td>
  363. <td>{{ $curFund }}</td>
  364. @foreach($rows as $row)
  365. <td>{{ $row->int_r }}</td>
  366. @endforeach
  367. </tr>
  368. @endforeach
  369. @else
  370. <tr>
  371. <td colspan="5">
  372. No data.
  373. </td>
  374. </tr>
  375. @endif
  376. </tbody>
  377. </table>
  378. </div>
  379. @endsection
  380. @push('styles')
  381. <link rel="stylesheet" href="{{ asset('css/desktop/service/index.css') }}"/>
  382. @endpush