{"id":1005,"date":"2026-01-10T12:04:28","date_gmt":"2026-01-10T12:04:28","guid":{"rendered":"https:\/\/cyphersol.com\/blogs\/?p=1005"},"modified":"2026-01-10T12:08:35","modified_gmt":"2026-01-10T12:08:35","slug":"laravel-folder-structure-explained-beginner-friendly-guide","status":"publish","type":"post","link":"https:\/\/cyphersol.com\/blogs\/laravel-folder-structure-explained-beginner-friendly-guide\/","title":{"rendered":"Laravel Folder Structure Explained (Beginner Friendly Guide)\u00a0"},"content":{"rendered":"\n<p>Laravel project structure, Laravel directories explained, Laravel for beginners&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-uagb-image uagb-block-ca784d00 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-none\"><figure class=\"wp-block-uagb-image__figure\"><img loading=\"lazy\" decoding=\"async\" srcset=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-1024x281.jpg ,https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0.jpg 780w, https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0.jpg 360w\" sizes=\"auto, (max-width: 480px) 150px\" src=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-1024x281.jpg\" alt=\"\" class=\"uag-image-1008\" width=\"1536\" height=\"421\" title=\"task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0\" loading=\"lazy\" role=\"img\"\/><\/figure><\/div>\n\n\n\n<p><strong>Introduction<\/strong>&nbsp;<\/p>\n\n\n\n<p>If you are new to Laravel, one of the first things that can confuse you is its <strong>folder structure<\/strong>. Laravel follows the <strong>MVC (Model\u2013View\u2013Controller)<\/strong> architecture, and each folder has a specific purpose.&nbsp;<\/p>\n\n\n\n<p>In this beginner-friendly guide, we\u2019ll <strong>explain the Laravel folder structure in simple words<\/strong>, so you understand <strong>where to write code, where files are stored, and how everything works together<\/strong>.&nbsp;<\/p>\n\n\n\n<p><strong>Root Directory Structure in Laravel<\/strong>&nbsp;<\/p>\n\n\n\n<p>When you create a new Laravel project, you\u2019ll see folders like this:&nbsp;<\/p>\n\n\n\n<p><strong>app&nbsp;<br>bootstrap&nbsp;<br>config&nbsp;<br>database&nbsp;<br>public&nbsp;<br>resources&nbsp;<br>routes&nbsp;<br>storage&nbsp;<br>tests&nbsp;<br>vendor&nbsp;<br>.env&nbsp;<br>composer.json&nbsp;<br>artisan&nbsp;<\/strong><br>&nbsp;<\/p>\n\n\n\n<p>Let\u2019s explain each folder <strong>one by one<\/strong>.&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-uagb-image uagb-block-4dd909c2 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-none\"><figure class=\"wp-block-uagb-image__figure\"><img loading=\"lazy\" decoding=\"async\" srcset=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekwdhyyegyaz025ebnezvje_1768046408_img_1.webp ,https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekwdhyyegyaz025ebnezvje_1768046408_img_1.webp 780w, https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekwdhyyegyaz025ebnezvje_1768046408_img_1.webp 360w\" sizes=\"auto, (max-width: 480px) 150px\" src=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekwdhyyegyaz025ebnezvje_1768046408_img_1.webp\" alt=\"\" class=\"uag-image-1009\" width=\"1024\" height=\"1024\" title=\"task_01kekwdhyyegyaz025ebnezvje_1768046408_img_1\" loading=\"lazy\" role=\"img\"\/><\/figure><\/div>\n\n\n\n<p><strong>1. app Folder (Core Application Logic)<\/strong>&nbsp;<\/p>\n\n\n\n<p>The <strong>app<\/strong> folder is the heart of your Laravel application.&nbsp;<\/p>\n\n\n\n<p><em>Important subfolders:<\/em>&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Http<\/strong> \u2013 Contains Controllers, Middleware, and Requests&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Models<\/strong> \u2013 All Eloquent models (database tables)&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Providers<\/strong> \u2013 Service providers that boot your app&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Example:<\/strong>&nbsp;<br>If you create a controller:&nbsp;<\/p>\n\n\n\n<p>app\/Http\/Controllers\/UserController.php&nbsp;<br>&nbsp;<\/p>\n\n\n\n<p><strong> This is where business logic lives.<\/strong>\u00a0<\/p>\n\n\n\n<p><strong>2. bootstrap Folder (Application Bootstrapping)<\/strong>&nbsp;<\/p>\n\n\n\n<p>The <strong>bootstrap<\/strong> folder helps Laravel start and load properly.&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Contains files that <strong>bootstrap the framework<\/strong>&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Mostly used internally by Laravel&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Beginners usually <strong>don\u2019t need to change anything here<\/strong>.&nbsp;<\/p>\n\n\n\n<p><strong>3. config Folder (Configuration Files)&nbsp;<\/strong><\/p>\n\n\n\n<p>The <strong>config<\/strong> folder stores all configuration files.&nbsp;<\/p>\n\n\n\n<p>Examples:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>app.php \u2013 Application settings&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>database.php \u2013 Database configuration&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>mail.php \u2013 Email settings&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>You can change behavior of Laravel <strong>without touching core code<\/strong>.&nbsp;<\/p>\n\n\n\n<p><strong>4. database Folder (Database Related Files)&nbsp;<\/strong><\/p>\n\n\n\n<p>This folder is used for database operations.&nbsp;<\/p>\n\n\n\n<p>Contains:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>migrations<\/strong> \u2013 Database table structure&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>seeders<\/strong> \u2013 Sample data&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>factories<\/strong> \u2013 Fake data for testing&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Example migration path:&nbsp;<\/p>\n\n\n\n<p>database\/migrations\/2026_01_01_create_users_table.php&nbsp;<br>&nbsp;<\/p>\n\n\n\n<p><strong>5. public Folder (Publicly Accessible Files)&nbsp;<\/strong><\/p>\n\n\n\n<p>The <strong>public<\/strong> folder is the <strong>only folder accessible from the browser<\/strong>.&nbsp;<\/p>\n\n\n\n<p>Contains:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>index.php \u2013 Entry point of Laravel&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>CSS, JS, images&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Uploaded files (optional)&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Your website loads from:&nbsp;<\/p>\n\n\n\n<p>public\/index.php&nbsp;<br>&nbsp;<\/p>\n\n\n\n<p><strong>6. resources Folder (Views &amp; Frontend Assets)&nbsp;<\/strong><\/p>\n\n\n\n<p>This folder contains:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>views<\/strong> \u2013 Blade templates&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>css \/ js<\/strong> \u2013 Frontend assets&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>lang<\/strong> \u2013 Language files&nbsp;<\/li>\n<\/ul>\n\n\n\n<p> Example Blade file:\u00a0<\/p>\n\n\n\n<p>resources\/views\/welcome.blade.php&nbsp;<br>&nbsp;<\/p>\n\n\n\n<p>This is where <strong>HTML + Blade<\/strong> lives.&nbsp;<\/p>\n\n\n\n<p><strong>7. routes Folder (Application Routes)&nbsp;<\/strong><\/p>\n\n\n\n<p>The <strong>routes<\/strong> folder defines URLs of your application.&nbsp;<\/p>\n\n\n\n<p>Common route files:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>web.php \u2013 Web routes&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>api.php \u2013 API routes&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>console.php \u2013 Artisan commands&nbsp;<\/li>\n<\/ul>\n\n\n\n<p> Example route:\u00a0<\/p>\n\n\n\n<p>Route::get(&#8216;\/users&#8217;, [UserController::class, &#8216;index&#8217;]);&nbsp;<br>&nbsp;<\/p>\n\n\n\n<p><strong>8. storage Folder (Logs &amp; Cache)&nbsp;<\/strong><\/p>\n\n\n\n<p>The <strong>storage<\/strong> folder stores:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Logs&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Cached files&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Uploaded files&nbsp;<\/li>\n<\/ul>\n\n\n\n<p> Important subfolders:\u00a0<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>logs&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>framework&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>app&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>&nbsp;Make sure this folder has <strong>write permissions<\/strong>.&nbsp;<\/p>\n\n\n\n<p><strong>9. tests Folder (Testing Files)&nbsp;<\/strong><\/p>\n\n\n\n<p>This folder is used for:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Feature tests&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Unit tests&nbsp;<\/li>\n<\/ul>\n\n\n\n<p> Useful when writing <strong>automated tests<\/strong>.&nbsp;<\/p>\n\n\n\n<p><strong>10. vendor Folder (Dependencies)&nbsp;<\/strong><\/p>\n\n\n\n<p>The <strong>vendor<\/strong> folder contains:&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Laravel core files&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Third-party packages installed via Composer&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>&nbsp;<strong>Never edit this folder manually<\/strong>.&nbsp;<\/p>\n\n\n\n<p>Important Root Files&nbsp;<\/p>\n\n\n\n<p>.env&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Environment configuration&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Database credentials&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>App key&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>artisan&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Command-line tool&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Used to run Laravel commands&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>Example:&nbsp;<\/p>\n\n\n\n<p>php artisan serve&nbsp;<br><strong><\/strong>&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-uagb-image uagb-block-095c8f51 wp-block-uagb-image--layout-default wp-block-uagb-image--effect-static wp-block-uagb-image--align-none\"><figure class=\"wp-block-uagb-image__figure\"><img loading=\"lazy\" decoding=\"async\" srcset=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01keknaxs9f6h93gjtcc7fmvbg_1768038978_img_1.webp ,https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01keknaxs9f6h93gjtcc7fmvbg_1768038978_img_1.webp 780w, https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01keknaxs9f6h93gjtcc7fmvbg_1768038978_img_1.webp 360w\" sizes=\"auto, (max-width: 480px) 150px\" src=\"https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01keknaxs9f6h93gjtcc7fmvbg_1768038978_img_1.webp\" alt=\"\" class=\"uag-image-1006\" width=\"1024\" height=\"1024\" title=\"task_01keknaxs9f6h93gjtcc7fmvbg_1768038978_img_1\" loading=\"lazy\" role=\"img\"\/><\/figure><\/div>\n\n\n\n<p>Why Laravel Folder Structure Is Important&nbsp;<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Keeps code <strong>clean &amp; organized<\/strong>&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Easy to <strong>maintain large projects<\/strong>&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Follows <strong>MVC best practices<\/strong>&nbsp;<\/li>\n<\/ul>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Beginner-friendly once understood&nbsp;<\/li>\n<\/ul>\n\n\n\n<p><strong>Conclusion&nbsp;<\/strong><\/p>\n\n\n\n<p>Understanding the <strong>Laravel folder structure<\/strong> is the <strong>first step to mastering Laravel<\/strong>. Once you know where things belong, development becomes faster, cleaner, and more professional.&nbsp;<\/p>\n\n\n\n<p>If you\u2019re a beginner, focus on:&nbsp;<br>\u2705 app&nbsp;<br>\u2705 routes&nbsp;<br>\u2705 resources&nbsp;<br>\u2705 database&nbsp;<\/p>\n\n\n\n<p>The rest will become easy with practice.&nbsp;<\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Laravel project structure, Laravel directories explained, Laravel for beginners&nbsp; Introduction&nbsp; If you are new to Laravel, one of the first [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":1007,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"normal-width-container","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[9],"tags":[293,291,294,279,295,292,296],"class_list":["post-1005","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-technology","tag-laravel-directories-explained","tag-laravel-folder-structure","tag-laravel-for-beginners","tag-laravel-framework-explained","tag-laravel-mvc-structure","tag-laravel-project-structure","tag-laravel-routes-folder"],"uagb_featured_image_src":{"full":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0.webp",1536,1024,false],"thumbnail":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-150x150.webp",150,150,true],"medium":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-300x200.webp",300,200,true],"medium_large":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-768x512.webp",768,512,true],"large":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-1024x683.webp",1024,683,true],"1536x1536":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0.webp",1536,1024,false],"2048x2048":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0.webp",1536,1024,false],"web-stories-poster-portrait":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-640x853.webp",640,853,true],"web-stories-publisher-logo":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-96x96.webp",96,96,true],"web-stories-thumbnail":["https:\/\/cyphersol.com\/blogs\/wp-content\/uploads\/2026\/01\/task_01kekw8ajqezwt8rbvj1r86xaj_1768046244_img_0-150x100.webp",150,100,true]},"uagb_author_info":{"display_name":"csadmin","author_link":"https:\/\/cyphersol.com\/blogs\/author\/csadmin\/"},"uagb_comment_info":0,"uagb_excerpt":"Laravel project structure, Laravel directories explained, Laravel for beginners&nbsp; Introduction&nbsp; If you are new to Laravel, one of the first [&hellip;]","_links":{"self":[{"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/posts\/1005","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/comments?post=1005"}],"version-history":[{"count":2,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/posts\/1005\/revisions"}],"predecessor-version":[{"id":1011,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/posts\/1005\/revisions\/1011"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/media\/1007"}],"wp:attachment":[{"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/media?parent=1005"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/categories?post=1005"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cyphersol.com\/blogs\/wp-json\/wp\/v2\/tags?post=1005"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}