{"id":804,"date":"2022-12-21T12:27:30","date_gmt":"2022-12-21T12:27:30","guid":{"rendered":"https:\/\/www.devopstrainer.in\/blog\/?p=804"},"modified":"2022-12-21T12:27:30","modified_gmt":"2022-12-21T12:27:30","slug":"in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it","status":"publish","type":"post","link":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/","title":{"rendered":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it?"},"content":{"rendered":"<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png\" alt=\"\" class=\"wp-image-805\" width=\"785\" height=\"399\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png 1024w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-300x153.png 300w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-768x390.png 768w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page.png 1363w\" sizes=\"auto, (max-width: 785px) 100vw, 785px\" \/><figcaption class=\"wp-element-caption\"><strong><em>Layout Blade Page<\/em><\/strong><\/figcaption><\/figure>\n<\/div>\n\n\n<p>if you&#8217;re a beginner or intermediator on the journey of Laravel, you will introduce to fewer or more bugs or issues then how can you fix them? suppose we&#8217;re facing issues like that I have mentioned image above. Easily, you get the solution with one step. First, you will check the route and controller. if you will get everything correct in route So, you will go through Democontroller that you would have earlier made for rendering the blade page.<\/p>\n\n\n\n<p>So, In that, you will check the public function code that I have mentioned on the below image.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\n\r\nnamespace App\\Http\\Controllers;\r\n\r\nuse Illuminate\\Http\\Request;\r\n\r\nclass DemoController extends Controller\r\n{\r\n    public function index()\r\n    {\r\n        return view('home');\r\n    }\r\n    public function about()\r\n    {\r\n        return view('about');\r\n    }\r\n}\r\n<\/code><\/pre>\n\n\n\n<p>After that, you will give the accurate directory path of the blade page then you will get your possible outcomes on local that I have shown on the below image.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;?php\r\n\r\nnamespace App\\Http\\Controllers;\r\n\r\nuse Illuminate\\Http\\Request;\r\n\r\nclass DemoController extends Controller\r\n{\r\n    public function index()\r\n    {\r\n        return view('home');\r\n    }\r\n    public function about()\r\n    {\r\n        return view('layouts.about');\r\n    }\r\n}<\/code><\/pre>\n\n\n\n<p>Correcting all, you will get successful outcomes on the local and accurate content of the blade page that you want to show. I have mentioned on below image.<\/p>\n\n\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter size-large is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-layout-1024x489.png\" alt=\"\" class=\"wp-image-806\" width=\"758\" height=\"362\" srcset=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-layout-1024x489.png 1024w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-layout-300x143.png 300w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-layout-768x367.png 768w, https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-layout.png 1366w\" sizes=\"auto, (max-width: 758px) 100vw, 758px\" \/><figcaption class=\"wp-element-caption\"><strong><em>About Blade Page<\/em><\/strong><\/figcaption><\/figure>\n<\/div>","protected":false},"excerpt":{"rendered":"<p>if you&#8217;re a beginner or intermediator on the journey of Laravel, you will introduce to fewer or more bugs or issues then how can you fix them? suppose we&#8217;re facing&hellip;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[315,289,316],"tags":[],"class_list":["post-804","post","type-post","status-publish","format-standard","hentry","category-controller","category-laravel","category-route"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps\" \/>\n<meta property=\"og:description\" content=\"if you&#8217;re a beginner or intermediator on the journey of Laravel, you will introduce to fewer or more bugs or issues then how can you fix them? suppose we&#8217;re facing&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\" \/>\n<meta property=\"og:site_name\" content=\"DevOps | SRE | DevSecOps\" \/>\n<meta property=\"article:published_time\" content=\"2022-12-21T12:27:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png\" \/>\n<meta name=\"author\" content=\"rahulkr kr\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"rahulkr kr\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\"},\"author\":{\"name\":\"rahulkr kr\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d\"},\"headline\":\"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it?\",\"datePublished\":\"2022-12-21T12:27:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\"},\"wordCount\":189,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png\",\"articleSection\":[\"Controller\",\"Laravel\",\"Route\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\",\"url\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\",\"name\":\"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps\",\"isPartOf\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png\",\"datePublished\":\"2022-12-21T12:27:30+00:00\",\"author\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage\",\"url\":\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page.png\",\"contentUrl\":\"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page.png\",\"width\":1363,\"height\":693},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.devopstrainer.in\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it?\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#website\",\"url\":\"https:\/\/www.devopstrainer.in\/blog\/\",\"name\":\"DevOps | SRE | DevSecOps\",\"description\":\"Automation means Cost, Quality, Time\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.devopstrainer.in\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d\",\"name\":\"rahulkr kr\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g\",\"caption\":\"rahulkr kr\"},\"url\":\"https:\/\/www.devopstrainer.in\/blog\/author\/rahulkr\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/","og_locale":"en_US","og_type":"article","og_title":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps","og_description":"if you&#8217;re a beginner or intermediator on the journey of Laravel, you will introduce to fewer or more bugs or issues then how can you fix them? suppose we&#8217;re facing&hellip;","og_url":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/","og_site_name":"DevOps | SRE | DevSecOps","article_published_time":"2022-12-21T12:27:30+00:00","og_image":[{"url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png","type":"","width":"","height":""}],"author":"rahulkr kr","twitter_card":"summary_large_image","twitter_misc":{"Written by":"rahulkr kr","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#article","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/"},"author":{"name":"rahulkr kr","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"headline":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it?","datePublished":"2022-12-21T12:27:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/"},"wordCount":189,"commentCount":0,"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png","articleSection":["Controller","Laravel","Route"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/","url":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/","name":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it? - DevOps | SRE | DevSecOps","isPartOf":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage"},"image":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage"},"thumbnailUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page-1024x521.png","datePublished":"2022-12-21T12:27:30+00:00","author":{"@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d"},"breadcrumb":{"@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#primaryimage","url":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page.png","contentUrl":"https:\/\/www.devopstrainer.in\/blog\/wp-content\/uploads\/2022\/12\/about-blade-page.png","width":1363,"height":693},{"@type":"BreadcrumbList","@id":"https:\/\/www.devopstrainer.in\/blog\/in-laravel-if-your-blade-page-is-not-rendering-locally-when-you-pass-the-page-from-the-route-and-controller-then-how-can-we-fix-it\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.devopstrainer.in\/blog\/"},{"@type":"ListItem","position":2,"name":"In Laravel, If your blade page is not rendering locally, when you pass the page from the route and controller then how can we fix it?"}]},{"@type":"WebSite","@id":"https:\/\/www.devopstrainer.in\/blog\/#website","url":"https:\/\/www.devopstrainer.in\/blog\/","name":"DevOps | SRE | DevSecOps","description":"Automation means Cost, Quality, Time","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.devopstrainer.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/e9fd1d88de76754aa189257cd197394d","name":"rahulkr kr","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.devopstrainer.in\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/79531cbaf0b831cebc9631f6ac28f21fb3fb0dc2615eeecdeeec43038b513473?s=96&d=mm&r=g","caption":"rahulkr kr"},"url":"https:\/\/www.devopstrainer.in\/blog\/author\/rahulkr\/"}]}},"_links":{"self":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/804","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/comments?post=804"}],"version-history":[{"count":1,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/804\/revisions"}],"predecessor-version":[{"id":807,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/posts\/804\/revisions\/807"}],"wp:attachment":[{"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/media?parent=804"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/categories?post=804"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopstrainer.in\/blog\/wp-json\/wp\/v2\/tags?post=804"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}