{"id":1961,"date":"2019-12-19T09:25:55","date_gmt":"2019-12-19T00:25:55","guid":{"rendered":"http:\/\/taki-lab.site\/bocci\/?p=1961"},"modified":"2019-12-19T09:25:57","modified_gmt":"2019-12-19T00:25:57","slug":"%e3%80%90laravel%e3%80%91%e3%80%90%e3%83%9b%e3%83%86%e3%83%ab%e4%ba%88%e7%b4%84%e7%ae%a1%e7%90%86%e3%80%91%e3%83%81%e3%82%a7%e3%83%83%e3%82%af%e3%82%a2%e3%82%a6%e3%83%88%e6%99%82%e9%96%93%e3%82%92","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=1961","title":{"rendered":"\u3010laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u8ffd\u52a0\u3059\u308b"},"content":{"rendered":"\n<p>\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/takishita2nd\/hotel-mng\">https:\/\/github.com\/takishita2nd\/hotel-mng<\/a><\/p>\n\n\n\n<p>\u3055\u3066\u3001\u6b21\u306e\u8ab2\u984c\u306f\u3001\u4e88\u7d04\u767b\u9332\u6642\u306b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u767b\u9332\u3057\u3001\u65e5\u6bce\u306e\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3068\u90e8\u5c4b\u3092\u4e00\u89a7\u306b\u8868\u793a\u3059\u308b\u3053\u3068\u3067\u3059\u3002<\/p>\n\n\n\n<p>\u307e\u305a\u306f\u3001\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u767b\u9332\u3059\u308b\u51e6\u7406\u304b\u3089\u4f5c\u3063\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u30de\u30a4\u30b0\u30ec\u30fc\u30b7\u30e7\u30f3\u30d5\u30a1\u30a4\u30eb\u3092\u4f5c\u6210\u3057\u3001\u4e88\u7d04\u7ba1\u7406\u30c6\u30fc\u30d6\u30eb\u306b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u767b\u9332\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class AddCheckout extends Migration\n{\n    \/**\n     * Run the migrations.\n     *\n     * @return void\n     *\/\n    public function up()\n    {\n        Schema::table('reserve_managements', function (Blueprint $table) {\n            $table->datetime('checkout')->nullable();\n        });\n    }\n\n    \/**\n     * Reverse the migrations.\n     *\n     * @return void\n     *\/\n    public function down()\n    {\n        Schema::table('reserve_managements', function (Blueprint $table) {\n            $table->dropColumn('checkout');\n        });\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>\u6b21\u306f\u3001\u4e88\u7d04\u8ffd\u52a0\u753b\u9762\u306b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u767b\u9332\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u306e\u3067\u3059\u304c\u300130\u5206\u304a\u304d\u306b\u30ea\u30b9\u30c8\u304b\u3089\u9078\u629e\u3059\u308b\u3001\u3068\u3044\u3046\u5f62\u5f0f\u306b\u3057\u307e\u3057\u3087\u3046\u304b\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    \/**\n     * \u6642\u9593\u4e00\u89a7\u309230\u5206\u304a\u304d\u306b\u3057\u3066\u8fd4\u3059\n     *\/\n    public function getTimeList()\n    {\n        $time = 0;\n        $ret = array();\n        for($i = 0; $i &lt; 48; $i++)\n        {\n            $time = strtotime('00:00 + '.($i * 30).' minute') - strtotime('00:00');\n            $ret&#91;$time] = date('H:i', $time);\n        }\n        return $ret;\n    }\n<\/code><\/pre>\n\n\n\n<p>\u3053\u308c\u3067array[&#8216;\u30c1\u30c3\u30af\u30bf\u30a4\u30e0&#8217;] = \u2019\u6642\u9593:\u5206&#8217;\u3068\u3044\u3046\u3088\u3046\u306a\u5f62\u3067\u30ea\u30b9\u30c8\u3092\u4f5c\u6210\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u3092\u8868\u793a\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    public function create()\n    {\n        return view('register.create',\n                    &#91;\n                        'rooms' => $this->roomRepository->getRoomList(),\n                        'timelist' => $this->registerManagement->getTimeList()\n                    ]\n                );\n    }\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>                    &lt;tr>\n                        &lt;th>\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8&lt;\/th>\n                        &lt;td>{!! Form::select('checkout', $timelist) !!}&lt;\/td>\n                    &lt;\/tr>\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"328\" data-attachment-id=\"1962\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=1962\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-06.png?fit=587%2C406&amp;ssl=1\" data-orig-size=\"587,406\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot-from-2019-12-19-09-00-06\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-06.png?fit=474%2C328&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-06.png?resize=474%2C328\" alt=\"\" class=\"wp-image-1962\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-06.png?w=587&amp;ssl=1 587w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-06.png?resize=300%2C207&amp;ssl=1 300w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<pre class=\"wp-block-code\"><code>    public function store(ManagementRequest $request)\n    {\n        if($this->registerManagement->checkSchedule($request->start_day, \n                                                    $request->days, \n                                                    $request->room) == false)\n        {\n            return redirect('management\/create')\n                        ->with(&#91;'error' => '\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\u304c\u91cd\u8907\u3057\u307e\u3059'])\n                        ->withInput();\n        }\n        $param = $this->registerManagement->getParam();\n        $this->registerManagement->add(&#91;\n            $param&#91;0] => $request->name,\n            $param&#91;1] => $request->address,\n            $param&#91;2] => $request->phone,\n            $param&#91;3] => $request->num,\n            $param&#91;4] => $request->days,\n            $param&#91;5] => $request->start_day,\n            $param&#91;6] => false,\n            $param&#91;7] => date('Y-m-d H:i', strtotime($request->start_day.'+'.$request->days.' day') + $request->checkout)\n        ], $request->room);\n        return redirect('management');\n    }\n<\/code><\/pre>\n\n\n\n<p>\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u306f\u3001\u5bbf\u6cca\u65e5\uff0b\u5bbf\u6cca\u65e5\u6570\uff0b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3067\u8a08\u7b97\u3057\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u3067\u3001\u3053\u308c\u3092\u4e00\u89a7\u8868\u793a\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>    public function getList()\n    {\n        $select = &#91;'reserve_managements.id as id', 'reserve_managements.name as name', 'address', 'phone', 'num', 'rooms.name as room', 'checkout', 'start_day'];\n        return ReserveManagement::select($select)\n                                    ->where('lodging', false)\n                                    ->orderBy('start_day')\n                                    ->leftJoin('reserve_management_room', 'reserve_managements.id', '=', 'reserve_management_room.reserve_management_id')\n                                    ->leftJoin('rooms', 'reserve_management_room.room_id', '=', 'rooms.id')\n                                    ->get();\n    }\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>    public function getListByMonth($year, $month, $room)\n    {\n        $select = &#91;'reserve_managements.id as id', 'reserve_managements.name as name', 'address', 'phone', 'num', 'rooms.name as room', 'checkout', 'start_day'];\n        return ReserveManagement::select($select)\n                                ->leftJoin('reserve_management_room', 'reserve_managements.id', '=', 'reserve_management_room.reserve_management_id')\n                                ->leftJoin('rooms', 'reserve_management_room.room_id', '=', 'rooms.id')\n                                ->where('start_day', '>=', date('Y-m-d', strtotime('first day of '.$year.'-'.$month)))\n                                ->where('start_day', '&lt;=', date('Y-m-d', strtotime('last day of '.$year.'-'.$month)))\n                                ->where('reserve_management_room.room_id', $room)\n                                ->where('lodging', false)\n                                ->orderBy('start_day')\n                                ->get();\n    }\n<\/code><\/pre>\n\n\n\n<p>\u307e\u3041\u3001\u3084\u3063\u3066\u308b\u3053\u3068\u306f\u3001select\u53e5\u306e\u4e2d\u306bcheckout\u3092\u8ffd\u52a0\u3057\u305f\u3060\u3051\u3067\u3059\u304c\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>                    &lt;table class=\"management\">\n                        &lt;tr>\n                            &lt;th class=\"name\">\u540d\u524d&lt;\/th>\n                            &lt;th class=\"address\">\u4f4f\u6240&lt;\/th>\n                            &lt;th class=\"phone\">\u96fb\u8a71\u756a\u53f7&lt;\/th>\n                            &lt;th class=\"num\">\u4eba\u6570&lt;\/th>\n                            &lt;th class=\"room\">\u90e8\u5c4b&lt;\/th>\n                            &lt;th class=\"date\">\u5bbf\u6cca\u65e5&lt;\/th>\n                            &lt;th class=\"checkout\">\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8&lt;\/th>\n                            &lt;th class=\"command\">\u7de8\u96c6&lt;\/th>\n                            &lt;th class=\"command\">\u524a\u9664&lt;\/th>\n                            &lt;th class=\"command\">\u5bbf\u6cca&lt;\/th>\n                        &lt;\/tr>\n                    @foreach ($registerLists as $list)\n                        &lt;tr>\n                            &lt;td class=\"name\">{{ $list->name }}&lt;\/td>\n                            &lt;td class=\"address\">{{ $list->address }}&lt;\/td>\n                            &lt;td class=\"phone\">{{ $list->phone }}&lt;\/td>\n                            &lt;td class=\"num\">{{ $list->num }}&lt;\/td>\n                            &lt;td class=\"room\">{{ $list->room }}&lt;\/td>\n                            &lt;td class=\"date\">{{ $list->start_day }}&lt;\/td>\n                            &lt;td class=\"checkout\">{{ $list->checkout }}&lt;\/td>\n                            &lt;td class=\"command\">{{ Html::link('\/management\/'.$list->id.'\/edit', '\u7de8\u96c6') }}&lt;\/td>\n                            &lt;td class=\"command\">{{ Html::link('\/management\/'.$list->id.'\/conform', '\u524a\u9664') }}&lt;\/td>\n                            &lt;td class=\"command\">\n                            {!! Form::open(&#91;'url' => action('RegisterManagementController@lodging')]) !!}\n                            {!! Form::hidden('id', $list->id) !!}\n                            {!! Form::submit('\u5bbf\u6cca') !!}\n                            {!! Form::close() !!}\n                            &lt;\/td>\n                        &lt;\/tr>\n                    @endforeach\n                    &lt;\/table>\n<\/code><\/pre>\n\n\n\n<p>\u5bbf\u6cca\u65e5\u6570\u306e\u3068\u3053\u308d\u3092\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u306b\u7f6e\u304d\u63db\u3048\u307e\u3057\u305f\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"247\" data-attachment-id=\"1963\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=1963\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?fit=795%2C414&amp;ssl=1\" data-orig-size=\"795,414\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot-from-2019-12-19-09-00-56\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?fit=474%2C247&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?resize=474%2C247\" alt=\"\" class=\"wp-image-1963\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?w=795&amp;ssl=1 795w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?resize=300%2C156&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-00-56.png?resize=768%2C400&amp;ssl=1 768w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<p>\u7de8\u96c6\u51e6\u7406\u3082\u540c\u3058\u3088\u3046\u306b\u4fee\u6b63\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"394\" data-attachment-id=\"1964\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=1964\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-01-12.png?fit=475%2C395&amp;ssl=1\" data-orig-size=\"475,395\" data-comments-opened=\"1\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"Screenshot-from-2019-12-19-09-01-12\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-01-12.png?fit=474%2C394&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-01-12.png?resize=474%2C394\" alt=\"\" class=\"wp-image-1964\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-01-12.png?w=475&amp;ssl=1 475w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-19-09-01-12.png?resize=300%2C249&amp;ssl=1 300w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure>\n\n\n\n<p>\u3068\u308a\u3042\u3048\u305a\u3001\u3053\u3053\u307e\u3067\u3002<\/p>\n\n\n\n<a href=\"\/\/blog.with2.net\/link\/?2023426:1010\" target=\"_blank\" rel=\"noopener noreferrer\"><img data-recalc-dims=\"1\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/blog.with2.net\/img\/banner\/c\/banner_1\/br_c_1010_1.gif?w=474&#038;ssl=1\" title=\"\u30d1\u30bd\u30b3\u30f3\u30e9\u30f3\u30ad\u30f3\u30b0\"><\/a>\n","protected":false},"excerpt":{"rendered":"<p>\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089 https:\/\/github.com\/takishita2nd\/hotel-mng \u3055\u3066\u3001\u6b21\u306e\u8ab2\u984c\u306f\u3001\u4e88\u7d04\u767b\u9332\u6642\u306b\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u767b\u9332\u3057\u3001\u65e5\u6bce\u306e\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3068\u90e8\u5c4b\u3092\u4e00\u89a7\u306b\u8868\u793a\u3059\u308b\u3053\u3068\u3067\u3059\u3002  &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=1961\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u8ffd\u52a0\u3059\u308b<\/span> <span class=\"meta-nav\">&rarr;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"\u3010laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u30c1\u30a7\u30c3\u30af\u30a2\u30a6\u30c8\u6642\u9593\u3092\u8ffd\u52a0\u3059\u308b\n#TechCommit\n","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[8,3],"tags":[138,79],"class_list":["post-1961","post","type-post","status-publish","format-standard","hentry","category-linux","category-3","tag-laravel","tag-linux"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-vD","jetpack-related-posts":[{"id":2108,"url":"https:\/\/taki-lab.site\/bocci\/?p=2108","url_meta":{"origin":1961,"position":0},"title":"\u3010Laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u30e6\u30fc\u30b6\u30fc\u30a2\u30ab\u30a6\u30f3\u30c8\u3067\u4e88\u7d04\u767b\u9332","author":"taki","date":"2020\u5e741\u670810\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089 https:\/\/taki-lab.site\/bocci\/?p=2105 \u6700\u65b0\u2026","rel":"","context":"Laravel","block_context":{"text":"Laravel","link":"https:\/\/taki-lab.site\/bocci\/?cat=167"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-10-08-28-30.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-10-08-28-30.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-10-08-28-30.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-10-08-28-30.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2099,"url":"https:\/\/taki-lab.site\/bocci\/?p=2099","url_meta":{"origin":1961,"position":1},"title":"\u3010Laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u30e6\u30fc\u30b6\u30fc\u306e\u6a29\u9650\u7ba1\u7406\u3092\u884c\u3046","author":"taki","date":"2020\u5e741\u67088\u65e5","format":false,"excerpt":"\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089(gitHub) https:\/\/github.com\/takishita2nd\/\u2026","rel":"","context":"Laravel","block_context":{"text":"Laravel","link":"https:\/\/taki-lab.site\/bocci\/?cat=167"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-08-09-06-37.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-08-09-06-37.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-08-09-06-37.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/01\/Screenshot-from-2020-01-08-09-06-37.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":2301,"url":"https:\/\/taki-lab.site\/bocci\/?p=2301","url_meta":{"origin":1961,"position":2},"title":"\u3010Laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u4e88\u7d04\u6642\u306b\u89e3\u9320\u30ca\u30f3\u30d0\u30fc\u3092\u767a\u884c\u3059\u308b\u3002","author":"taki","date":"2020\u5e742\u67085\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=2259 \u6700\u2026","rel":"","context":"\u672a\u5206\u985e","block_context":{"text":"\u672a\u5206\u985e","link":"https:\/\/taki-lab.site\/bocci\/?cat=1"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/02\/Screenshot-from-2020-02-05-10-00-37.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/02\/Screenshot-from-2020-02-05-10-00-37.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/02\/Screenshot-from-2020-02-05-10-00-37.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/02\/Screenshot-from-2020-02-05-10-00-37.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/02\/Screenshot-from-2020-02-05-10-00-37.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":1849,"url":"https:\/\/taki-lab.site\/bocci\/?p=1849","url_meta":{"origin":1961,"position":3},"title":"\u3010Laravel\u3011\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u30b7\u30b9\u30c6\u30e0\u5b8c\u6210","author":"taki","date":"2019\u5e7412\u67085\u65e5","format":false,"excerpt":"\u3082\u3046\u5c11\u3057\u3067\u5b8c\u6210\u3060\u304b\u3089\u3001\u3082\u3046\u3061\u3087\u3063\u3068\u3084\u3063\u3066\u7d42\u308f\u308d\u3046\u3068\u601d\u3063\u305f\u3089\u3001\u30ac\u30c3\u30c4\u30ea\u66f8\u304d\u63db\u3048\u308b\u3053\u3068\u306b\u306a\u308b\u3068\u3044\u3046\u30d7\u30ed\u30b0\u2026","rel":"","context":"Linux","block_context":{"text":"Linux","link":"https:\/\/taki-lab.site\/bocci\/?cat=8"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-05-13-34-57.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-05-13-34-57.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-05-13-34-57.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/Screenshot-from-2019-12-05-13-34-57.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":1876,"url":"https:\/\/taki-lab.site\/bocci\/?p=1876","url_meta":{"origin":1961,"position":4},"title":"\u3010Laravel\u3011\u3010\u30db\u30c6\u30eb\u4e88\u7d04\u7ba1\u7406\u3011\u90e8\u5c4b\u3092\u5897\u8a2d\u3059\u308b","author":"taki","date":"2019\u5e7412\u67089\u65e5","format":false,"excerpt":"\u6b21\u306e\u8ab2\u984c\u306f\u300c\u90e8\u5c4b\u3092\u5897\u8a2d\u3057\u3001\u90e8\u5c4b\u5225\u306b\u7ba1\u7406\u3092\u884c\u3046\u300d\u3068\u3044\u3046\u3082\u306e\u3067\u3057\u305f\u3002 \u4eca\u307e\u3067\u306f\u90e8\u5c4b\u306f\u4e00\u3064\u306e\u524d\u63d0\u3067\u4f5c\u3063\u3066\u304d\u2026","rel":"","context":"Linux","block_context":{"text":"Linux","link":"https:\/\/taki-lab.site\/bocci\/?cat=8"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/612479547639d665109758d190215a6a.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/612479547639d665109758d190215a6a.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/612479547639d665109758d190215a6a.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/612479547639d665109758d190215a6a.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/12\/612479547639d665109758d190215a6a.jpg?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":1690,"url":"https:\/\/taki-lab.site\/bocci\/?p=1690","url_meta":{"origin":1961,"position":5},"title":"\u3010Linux\u3011\u3010Laravel\u3011\u30c6\u30fc\u30d6\u30eb\u4f5c\u6210\u3068\u30ea\u30ec\u30fc\u30b7\u30e7\u30f3","author":"taki","date":"2019\u5e7411\u670820\u65e5","format":false,"excerpt":"\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089 https:\/\/github.com\/takishita2nd\/hotel-mn\u2026","rel":"","context":"Linux","block_context":{"text":"Linux","link":"https:\/\/taki-lab.site\/bocci\/?cat=8"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/11\/c1dad5fb7dba93e4125b45cd6be89094.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/11\/c1dad5fb7dba93e4125b45cd6be89094.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/11\/c1dad5fb7dba93e4125b45cd6be89094.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2019\/11\/c1dad5fb7dba93e4125b45cd6be89094.jpg?resize=700%2C400&ssl=1 2x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1961","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=1961"}],"version-history":[{"count":1,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1961\/revisions"}],"predecessor-version":[{"id":1965,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/1961\/revisions\/1965"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=1961"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=1961"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=1961"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}