{"id":3705,"date":"2020-07-27T10:24:02","date_gmt":"2020-07-27T01:24:02","guid":{"rendered":"https:\/\/taki-lab.site\/bocci\/?p=3705"},"modified":"2020-07-27T10:24:05","modified_gmt":"2020-07-27T01:24:05","slug":"%e3%80%90%e3%83%80%e3%82%a4%e3%82%a8%e3%83%83%e3%83%88%e6%94%af%e6%8f%b4%e3%80%91%e3%80%90%e9%a3%9f%e4%ba%8b%e7%ae%a1%e7%90%86%e3%80%91%e3%83%87%e3%83%bc%e3%82%bf%e5%85%a5%e5%8a%9b%e5%87%a6%e7%90%86","status":"publish","type":"post","link":"https:\/\/taki-lab.site\/bocci\/?p=3705","title":{"rendered":"\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u30c7\u30fc\u30bf\u5165\u529b\u51e6\u7406\u3092\u4f5c\u6210\u3059\u308b\u3002"},"content":{"rendered":"\n<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002<\/p>\n\n\n\n<figure class=\"wp-block-embed-wordpress wp-block-embed is-type-wp-embed is-provider-\u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\"><div class=\"wp-block-embed__wrapper\">\n<blockquote class=\"wp-embedded-content\" data-secret=\"py9YdZ0GVX\"><a href=\"https:\/\/taki-lab.site\/bocci\/?p=3663\">\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u8a73\u7d30\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b\u3002<\/a><\/blockquote><iframe loading=\"lazy\" class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u8a73\u7d30\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b\u3002&#8221; &#8212; \u81ea\u5206\u3001\u307c\u3063\u3061\u3067\u3059\u304c\u4f55\u304b\uff1f\" src=\"https:\/\/taki-lab.site\/bocci\/?p=3663&#038;embed=true#?secret=lDz3hzuxCY#?secret=py9YdZ0GVX\" data-secret=\"py9YdZ0GVX\" width=\"474\" height=\"267\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"><\/iframe>\n<\/div><\/figure>\n\n\n\n<p>\u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089(gitHub)<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/takishita2nd\/diet-mng\">https:\/\/github.com\/takishita2nd\/diet-mng<\/a><\/p>\n\n\n\n<p>\u30c7\u30fc\u30bf\u5165\u529b\u30c0\u30a4\u30a2\u30ed\u30b0\u304b\u3089\u5165\u529b\u30c7\u30fc\u30bf\u3092\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u767b\u9332\u3059\u308b\u3068\u3053\u308d\u307e\u3067\u884c\u304d\u307e\u3059\u3002<\/p>\n\n\n\n<p>\u30e2\u30c7\u30eb<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>class User extends Authenticatable\n{\n    public function EatingManagements()\n    {\n        return $this->belongsToMany('App\\Model\\EatingManagement');\n    }\n<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>class EatingManagement extends Model\n{\n    protected $table = 'eating_managements';\n    \n    public function users()\n    {\n        return $this->belongsToMany('App\\User');\n    }\n\n    public function timezones()\n    {\n        return $this->belongsToMany('App\\Model\\Timezone');\n    }\n}<\/code><\/pre>\n\n\n\n<pre class=\"wp-block-code\"><code>class Timezone extends Model\n{\n    protected $table = 'timezones';\n    \n    public function Eating()\n    {\n        return $this->belongsToMany('App\\Model\\EatingManagement');\n    }\n}\n<\/code><\/pre>\n\n\n\n<p>\u30ea\u30dd\u30b8\u30c8\u30ea<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nnamespace App\\Repository;\n\nuse Illuminate\\Support\\Facades\\DB;\nuse Illuminate\\Support\\Facades\\Log;\nuse App\\Model\\EatingManagement;\nuse App\\Model\\Timezone;\nuse App\\User;\n\nclass EatingManagementRepository\n{\n    private $paramNames = &#91;'date', 'item', 'protein', 'riqid', 'carbo', 'calorie'];\n\n    public function __construct()\n    {\n\n    }\n\n    public function add($param, $user, $timezone)\n    {\n        $model = new EatingManagement();\n        foreach($this->paramNames as $name)\n        {\n            $model->$name = $param&#91;$name];\n        }\n        $model->save();\n        $time = Timezone::where('id', $timezone)->first();\n\n        $this->attachToUser($model, $user);\n        $this->attachToTimezone($model, $time);\n    }\n\n    public function attachToUser($model, $user)\n    {\n        $model->users()->attach($user);\n    }\n\n    public function detachToUser($model, $user)\n    {\n        $model->users()->detach($user);\n    }\n\n    public function attachToTimezone($model, $timezone)\n    {\n        $model->timezones()->attach($timezone);\n    }\n\n    public function detachToTimezone($model, $timezone)\n    {\n        $model->timezones()->detach($timezone);\n    }\n\n    public function getParam()\n    {\n        return $this->paramNames;\n    }\n\n}\n<\/code><\/pre>\n\n\n\n<p>\u30b3\u30f3\u30c8\u30ed\u30fc\u30e9\u30fc<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\n\nnamespace App\\Http\\Controllers\\Eating;\n\nuse Illuminate\\Http\\Request;\nuse Illuminate\\Support\\Facades\\Auth;\nuse App\\Http\\Controllers\\Controller;\nuse App\\Repository\\EatingManagementRepository;\n\nclass ApiController extends Controller\n{\n    public function __construct()\n    {\n        $this->middleware('auth');\n        $this->eatingManagement = new EatingManagementRepository();\n    }\n\n    \/**\n     * \u30c7\u30fc\u30bf\u3092\uff11\u4ef6\u767b\u9332\u3059\u308b\n     *\/\n    public function add(Request $request)\n    {\n        $paramNames = $this->eatingManagement->getParam();\n\n        $param = &#91;];\n        foreach($paramNames as $name) {\n            $param&#91;$name] = $request->contents&#91;$name];\n        }\n\n        $this->eatingManagement->add($param, Auth::user(), $request->contents&#91;'timezone']);\n        \n        return response()->json();\n    }\n\n}\n<\/code><\/pre>\n\n\n\n<p>\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u8a2d\u5b9a\u3059\u308b\u51e6\u7406\u3092\u3061\u3087\u3063\u3068\u5909\u3048\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<p>Vue\u5074\u3067typo\u3057\u3066\u3044\u306a\u3044\u3053\u3068\u304c\u524d\u63d0\u3067\u3059\u304c\u3001\u306a\u308b\u3079\u304f\u30b3\u30fc\u30c9\u306e\u4e2d\u3067\u76f4\u5024\u3092\u4f7f\u308f\u306a\u3044\uff08\u5b9a\u7fa9\u3059\u308b\u7b87\u6240\u306f\u4e00\u304b\u6240\u306e\u307f\uff09\u3088\u3046\u306b\u3059\u308b\u305f\u3081\u306e\u5de5\u592b\u3002<\/p>\n\n\n\n<p>\u3053\u308c\u304c\u6b63\u89e3\u306a\u306e\u304b\u3001\u3044\u307e\u3060\u306b\u308f\u304b\u308a\u307e\u305b\u3093\u3051\u3069\u306d\u3002<\/p>\n\n\n\n<p>Vue\u5074\u306e\u4fee\u6b63\u3067\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>EatingDashboardComponent.vue\n\n&lt;template>\n    &lt;div>\n        &lt;div class=\"dashboard\">\n            &lt;div class=\"chart\">\n                &lt;canvas id=\"eating\">&lt;\/canvas>\n            &lt;\/div>\n            &lt;div class=\"command\">\n                &lt;ul>\n                    &lt;li>&lt;a @click=\"onClickPrev\">prev&lt;\/a>&lt;\/li>\n                    &lt;li>&lt;a @click=\"onClickNext\">next&lt;\/a>&lt;\/li>\n                &lt;\/ul>\n                &lt;ul>\n                    &lt;li>&lt;a @click=\"onClickInput\">\u30af\u30a4\u30c3\u30af\u5165\u529b&lt;\/a>&lt;\/li>\n                    &lt;li>&lt;a href=\"\/eating\">\u8a73\u7d30&lt;\/a>&lt;\/li>\n                &lt;\/ul>\n            &lt;\/div>\n        &lt;\/div>\n        &lt;eating-input-dialog-component :show=\"showInputDialogContent\" :datehold=true @update=\"invokeUpdateList\">&lt;\/eating-input-dialog-component>\n    &lt;\/div>\n&lt;\/template>\n<\/code><\/pre>\n\n\n\n<p>\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u304b\u3089\u306e\u30af\u30a4\u30c3\u30af\u5165\u529b\u304b\u3089\u306f\u3001\u65e5\u4ed8\u306e\u5165\u529b\u306f\u3067\u304d\u306a\u3044\u3088\u3046\u306b\u3057\u307e\u3059\u3002\uff08\u672c\u65e5\u56fa\u5b9a\u306b\u3059\u308b\u3002\uff09<\/p>\n\n\n\n<p>\u305d\u306e\u305f\u3081\u306b\u3001\u30b3\u30f3\u30dd\u30fc\u30cd\u30f3\u30c8\u306bdatehold\u3068\u3044\u3046\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u8ffd\u52a0\u3067\u6e21\u3057\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>EatingInputDialogComponent.vue\n\n&lt;template>\n    &lt;div>\n        &lt;div id=\"overlay\" v-show=\"show\">\n            &lt;div id=\"content\">\n                &lt;p v-if=\"error_flg == true\" class=\"error\">\n                    &lt;ui>\n                        &lt;li v-for=\"error in errors\">{{ error }}&lt;\/li>\n                    &lt;\/ui>\n                &lt;\/p>\n                &lt;table class=\"edit\">\n                    &lt;tbody>\n                        &lt;tr>\n                            &lt;td>\u65e5\u4ed8&lt;\/td>\n                            &lt;td>\n                                &lt;input type=\"date\" v-model=\"contents.date\" v-if=\"datehold\" readonly>\n                                &lt;input type=\"date\" v-model=\"contents.date\" v-else>\n                            &lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u54c1\u540d&lt;\/td>\n                            &lt;td>&lt;input type=\"text\" v-model=\"contents.item\" \/>&lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u6642\u9593\u5e2f&lt;\/td>\n                            &lt;td>\n                                &lt;select name=\"timezone\" v-model=\"contents.timezone\">\n                                    &lt;option value=\"1\" selected>\u671d&lt;\/option>\n                                    &lt;option value=\"2\">\u663c&lt;\/option>\n                                    &lt;option value=\"3\">\u591c&lt;\/option>\n                                    &lt;option value=\"4\">\u9593\u98df&lt;\/option>\n                                &lt;\/select>\n                            &lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u30bf\u30f3\u30d1\u30af\u8cea&lt;\/td>\n                            &lt;td>&lt;input type=\"number\" v-model=\"contents.protein\" \/>&lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u8102\u8cea&lt;\/td>\n                            &lt;td>&lt;input type=\"number\" v-model=\"contents.riqid\" \/>&lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u70ad\u6c34\u5316\u7269&lt;\/td>\n                            &lt;td>&lt;input type=\"number\" v-model=\"contents.carbo\" \/>&lt;\/td>\n                        &lt;\/tr>\n                        &lt;tr>\n                            &lt;td>\u30ab\u30ed\u30ea\u30fc&lt;\/td>\n                            &lt;td>&lt;input type=\"number\" v-model=\"contents.calorie\" \/>&lt;\/td>\n                        &lt;\/tr>\n                    &lt;\/tbody>\n                &lt;\/table>\n                &lt;p id=\"command\">\n                    &lt;button @click=\"clickAdd\">\u5165\u529b&lt;\/button>\n                    &lt;button @click=\"closeModal\">\u9589\u3058\u308b&lt;\/button>\n                &lt;\/p>\n            &lt;\/div>\n        &lt;\/div>\n    &lt;\/div>\n&lt;\/template>\n&lt;script>\nexport default {\n    props: &#91;'show', 'datehold'],\n    data() {\n        return {\n            errors: &#91;],\n            error_flg: &#91;],\n            param: {},\n            contents: {\n                date: \"\",\n                item: \"\",\n                timezone: 1,\n                protein: \"\",\n                riqid: \"\",\n                carbo: \"\",\n                calorie: \"\",\n            },\n        };\n    },\n    created: function() {\n        this.clear();\n    },\n    methods: {\n        clickAdd: function() {\n            var self = this;\n            this.param.contents = this.contents;\n            axios.post('api\/eating\/add', this.param).then(function(response){\n                self.clear();\n                self.closeModal();\n                self.$emit('update');\n            }).catch(function(error){\n                self.error_flg = true;\n                self.errors = error.response.data.errors;\n            });\n        },\n        closeModal: function() {\n            this.$parent.showInputDialogContent = false;\n        },\n        clear: function() {\n            var today = new Date();\n            this.contents.date = today.getFullYear() + \"-\" + ('00'+(today.getMonth() + 1)).slice( -2 ) + \"-\" + today.getDate();\n            this.contents.item = \"\";\n            this.contents.timezone = 1;\n            this.contents.protein = \"\";\n            this.contents.riqid = \"\";\n            this.contents.carbo = \"\";\n            this.contents.calorie = \"\";\n            this.error_flg = false;\n            this.errors = &#91;];\n        }\n    }\n}\n&lt;\/script><\/code><\/pre>\n\n\n\n<p>\u3061\u3087\u3063\u3068\u82e6\u52b4\u3057\u305f\u306e\u306fdate\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3067\u3059\u306d\u3002<\/p>\n\n\n\n<p>date\u30d5\u30a9\u30fc\u30e0\u306e\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u306f&#8221;YYYY-MM-DD&#8221;\u3067\u3001\u3053\u308c\u304c\u82e5\u5e72\u9055\u3063\u3066\u3044\u3066\u3082\u30d5\u30a9\u30fc\u30e0\u306f\u6b63\u3057\u304f\u8a8d\u8b58\u3057\u3066\u304f\u308c\u307e\u305b\u3093\u3002<\/p>\n\n\n\n<p>\u5b9f\u884c\u7d50\u679c\u3002<\/p>\n\n\n\n<figure class=\"wp-block-gallery columns-1 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"376\" data-attachment-id=\"3707\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=3707\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?fit=1112%2C883&amp;ssl=1\" data-orig-size=\"1112,883\" 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-2020-07-27-09-52-05\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?fit=300%2C238&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?fit=474%2C376&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?resize=474%2C376&#038;ssl=1\" alt=\"\" data-id=\"3707\" class=\"wp-image-3707\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?resize=1024%2C813&amp;ssl=1 1024w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?resize=300%2C238&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?resize=768%2C610&amp;ssl=1 768w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?w=1112&amp;ssl=1 1112w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-05.png?w=948&amp;ssl=1 948w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure><\/li><\/ul><\/figure>\n\n\n\n<figure class=\"wp-block-gallery columns-1 is-cropped wp-block-gallery-2 is-layout-flex wp-block-gallery-is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" width=\"474\" height=\"231\" data-attachment-id=\"3708\" data-permalink=\"https:\/\/taki-lab.site\/bocci\/?attachment_id=3708\" data-orig-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?fit=1853%2C903&amp;ssl=1\" data-orig-size=\"1853,903\" 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-2020-07-27-09-52-40\" data-image-description=\"\" data-image-caption=\"\" data-medium-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?fit=300%2C146&amp;ssl=1\" data-large-file=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?fit=474%2C231&amp;ssl=1\" src=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?resize=474%2C231&#038;ssl=1\" alt=\"\" data-id=\"3708\" class=\"wp-image-3708\" srcset=\"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?resize=1024%2C499&amp;ssl=1 1024w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?resize=300%2C146&amp;ssl=1 300w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?resize=768%2C374&amp;ssl=1 768w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?resize=1536%2C749&amp;ssl=1 1536w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?w=1853&amp;ssl=1 1853w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?w=948&amp;ssl=1 948w, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/07\/Screenshot-from-2020-07-27-09-52-40.png?w=1422&amp;ssl=1 1422w\" sizes=\"auto, (max-width: 474px) 100vw, 474px\" \/><\/figure><\/li><\/ul><\/figure>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 \u6700\u65b0\u30bd\u30fc\u30b9\u306f\u3053\u3061\u3089(gitHub) https:\/\/github.com\/takishita2nd\/diet-mng \u30c7\u30fc\u30bf\u5165\u529b\u30c0\u30a4\u30a2\u30ed\u30b0\u304b\u3089\u5165\u529b\u30c7\u30fc\u30bf\u3092\u30c7\u30fc\u30bf\u30d9\u30fc\u30b9\u306b\u767b\u9332\u3059\u308b\u3068\u3053\u308d\u307e\u3067\u884c\u304d\u307e\u3059 &hellip; <a href=\"https:\/\/taki-lab.site\/bocci\/?p=3705\" class=\"more-link\">\u7d9a\u304d\u3092\u8aad\u3080 <span class=\"screen-reader-text\">\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u30c7\u30fc\u30bf\u5165\u529b\u51e6\u7406\u3092\u4f5c\u6210\u3059\u308b\u3002<\/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":"\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u30c7\u30fc\u30bf\u5165\u529b\u51e6\u7406\u3092\u4f5c\u6210\u3059\u308b\u3002\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":[167,3],"tags":[138,193],"class_list":["post-3705","post","type-post","status-publish","format-standard","hentry","category-laravel","category-3","tag-laravel","tag-193"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/p8SDbY-XL","jetpack-related-posts":[{"id":3821,"url":"https:\/\/taki-lab.site\/bocci\/?p=3821","url_meta":{"origin":3705,"position":0},"title":"\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u98df\u4e8b\u7ba1\u7406\u3011\u30c7\u30fc\u30bf\u8a73\u7d30\u304b\u3089\u5165\u529b\u51e6\u7406\u3092\u4f5c\u6210\u3059\u308b\u3002","author":"taki","date":"2020\u5e748\u67088\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=3791 \u6700\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\/08\/Screenshot-from-2020-08-08-08-59-13.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/08\/Screenshot-from-2020-08-08-08-59-13.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/08\/Screenshot-from-2020-08-08-08-59-13.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/08\/Screenshot-from-2020-08-08-08-59-13.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/08\/Screenshot-from-2020-08-08-08-59-13.png?resize=1050%2C600&ssl=1 3x"},"classes":[]},{"id":4346,"url":"https:\/\/taki-lab.site\/bocci\/?p=4346","url_meta":{"origin":3705,"position":1},"title":"\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u3010\u5165\u529b\u5c65\u6b74\u6a5f\u80fd\u3011\u5165\u529b\u5c65\u6b74\u306b\u30c7\u30fc\u30bf\u3092\u8a18\u5165","author":"taki","date":"2020\u5e7410\u670814\u65e5","format":false,"excerpt":"https:\/\/taki-lab.site\/bocci\/?p=4273 \u3053\u3053\u3082\u30b5\u30af\u30c3\u3068\u4f5c\u6210\u3067\u304d\u308b\u3068\u601d\u2026","rel":"","context":"Laravel","block_context":{"text":"Laravel","link":"https:\/\/taki-lab.site\/bocci\/?cat=167"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":3352,"url":"https:\/\/taki-lab.site\/bocci\/?p=3352","url_meta":{"origin":3705,"position":2},"title":"\u3010LARAVEL\u3011\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u30b0\u30e9\u30d5\u306e\u30c7\u30fc\u30bf\u9593\u9694\u3092\u6307\u5b9a\u3059\u308b","author":"taki","date":"2020\u5e746\u670823\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 http:\/\/taki-lab.site\/bocci\/?p=3296 \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\/06\/Screenshot-from-2020-06-23-08-33-15.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/06\/Screenshot-from-2020-06-23-08-33-15.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/06\/Screenshot-from-2020-06-23-08-33-15.png?resize=525%2C300 1.5x"},"classes":[]},{"id":3073,"url":"https:\/\/taki-lab.site\/bocci\/?p=3073","url_meta":{"origin":3705,"position":3},"title":"\u3010Laravel\u3011\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u30c0\u30c3\u30b7\u30e5\u30dc\u30fc\u30c9\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b","author":"taki","date":"2020\u5e745\u670827\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\/05\/Screenshot-from-2020-05-27-08-09-13-2.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-08-09-13-2.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-08-09-13-2.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-08-09-13-2.png?resize=700%2C400 2x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-08-09-13-2.png?resize=1050%2C600 3x"},"classes":[]},{"id":3094,"url":"https:\/\/taki-lab.site\/bocci\/?p=3094","url_meta":{"origin":3705,"position":4},"title":"\u3010LARAVEL\u3011\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u5165\u529b\u30c0\u30a4\u30a2\u30ed\u30b0\u753b\u9762\u3092\u4f5c\u6210\u3059\u308b","author":"taki","date":"2020\u5e745\u670828\u65e5","format":false,"excerpt":"\u524d\u56de\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089 https:\/\/taki-lab.site\/bocci\/?p=3073 \u6700\u65b0\u30bd\u30fc\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\/05\/Screenshot-from-2020-05-27-11-48-50.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-11-48-50.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-11-48-50.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-27-11-48-50.png?resize=700%2C400&ssl=1 2x"},"classes":[]},{"id":3148,"url":"https:\/\/taki-lab.site\/bocci\/?p=3148","url_meta":{"origin":3705,"position":5},"title":"\u3010LARAVEL\u3011\u3010\u30c0\u30a4\u30a8\u30c3\u30c8\u652f\u63f4\u3011\u30c7\u30fc\u30bf\u4e00\u89a7\u753b\u9762\u304b\u3089\u30c7\u30fc\u30bf\u5165\u529b","author":"taki","date":"2020\u5e745\u670831\u65e5","format":false,"excerpt":"\u524d\u56de\u307e\u3067\u306e\u72b6\u6cc1\u306f\u3053\u3061\u3089\u3002 https:\/\/taki-lab.site\/bocci\/?p=3117 \u6700\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\/05\/Screenshot-from-2020-05-31-11-56-25.png?resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-31-11-56-25.png?resize=350%2C200 1x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-31-11-56-25.png?resize=525%2C300 1.5x, https:\/\/i0.wp.com\/taki-lab.site\/bocci\/wp-content\/uploads\/2020\/05\/Screenshot-from-2020-05-31-11-56-25.png?resize=700%2C400 2x"},"classes":[]}],"jetpack_likes_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/3705","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=3705"}],"version-history":[{"count":2,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/3705\/revisions"}],"predecessor-version":[{"id":3709,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=\/wp\/v2\/posts\/3705\/revisions\/3709"}],"wp:attachment":[{"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=3705"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=3705"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/taki-lab.site\/bocci\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=3705"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}