{"id":267,"date":"2019-09-16T08:04:34","date_gmt":"2019-09-16T08:04:34","guid":{"rendered":"https:\/\/blog.a2design.biz\/?p=267"},"modified":"2023-11-23T11:27:58","modified_gmt":"2023-11-23T11:27:58","slug":"laravel-form-builder-quickly-and-easily-build-flexible-forms","status":"publish","type":"post","link":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/","title":{"rendered":"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms"},"content":{"rendered":"\n<p><a href=\"https:\/\/www.a2design.biz\/blog\/why-laravel-is-the-best-php-framework-for-startups\/\">Laravel is an excellent framework<\/a> on which to build an <a href=\"https:\/\/laravel.com\/docs\/10.x\/sanctum#:~:text=)%2D%3Edaily()%3B-,SPA%20Authentication,be%20an%20entirely%20separate%20repository.\">SPA<\/a>. When building forms, the work typically involves some form of JavaScript. However, very often, you don\u2019t want to have the complexity of modern JavaScript frameworks and prefer to make simple pages and simple forms. <\/p>\n\n\n\n<p>That&#8217;s why we decided to build our own Form Builder to simplify the working process. <\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Laravel Form Builder<\/h2>\n\n\n\n<p>For instance, you are aiming for something like this:  <\/p>\n\n\n\n<figure class=\"wp-block-gallery aligncenter has-nested-images columns-default is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\">\n<figure class=\"wp-block-image size-medium\"><img decoding=\"async\" width=\"400\" height=\"324\" data-id=\"276\" src=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-2-400x324.png\" alt=\"Laravel Form Builder\" class=\"wp-image-276\" srcset=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-2-400x324.png 400w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-2.png 513w\" sizes=\"(max-width: 400px) 100vw, 400px\" \/><\/figure>\n<\/figure>\n\n\n\n<p>For such a project, you might decide to create a \u201cclassic\u201d Laravel application. And that would be a great decision because Laravel is perfect for that type of work! The same application will both process the form requests and render the forms.&nbsp;<\/p>\n\n\n\n<p>But look at the \u201csimple\u201d form again and imagine how many manual tasks you may need to perform to create a form like that. And what if you have a few similar forms that are implementing the CRUD? Are you going to create reusable templates or something?<\/p>\n\n\n\n<p>The Form Builder package enables you to avoid all the tedious manual work and cast aside any concerns about reusing the code. <\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>You can use the Form Builder to quickly and easily perform the following functions:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Create labels<\/li>\n\n\n\n<li>Find any validation errors in your templates<\/li>\n\n\n\n<li>Use Bootstrap CSS classes and layouts<\/li>\n\n\n\n<li>Bind a certain route and model entity to your form<\/li>\n\n\n\n<li>And much, much more!&nbsp;<\/li>\n<\/ul>\n\n\n\n<p>At the same time, you aren\u2019t restricted by the default appearance or behavior of this package. You can customize any piece of your project so that it is unique to your needs. You can change just one form or can update multiple forms that are stored in a single place if you wish to apply a modification across an entire project.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How does it work?<\/strong><\/h2>\n\n\n\n<p>You may remember \u201cFormHelper\u201d for CakePHP (if you are old enough, ha, ha). It solved the same problem and did it well enough. The Laravel Form Builder package does similar things, but with a more accessible and modern approach that uses all the Laravel features that we have become accustomed to:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"610\" height=\"190\" src=\"https:\/\/ml7xv5cyrbjc.i.optimole.com\/w:auto\/h:auto\/q:auto\/https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot.png\" alt=\"\" class=\"wp-image-268\" srcset=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot.png 610w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-400x125.png 400w\" sizes=\"(max-width: 610px) 100vw, 610px\" \/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>It looks intuitive, and in this case:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The form will be submitted to the route bound with the \u201cupdate\u201d method of the Article Controller.<\/li>\n\n\n\n<li>The input values will be prefilled by fields from the provided $article entity.<\/li>\n\n\n\n<li>The form will have input for the article field \u201cname\u201d and also a label near it.<\/li>\n\n\n\n<li>The field will show validation errors near related fields in case it is not validated.&nbsp;<\/li>\n\n\n\n<li>The form contains hidden fields for CSRF tokens and the method name (for example, PUT) of the route.<\/li>\n<\/ul>\n\n\n\n<p>As such, it generates the following HTML code:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" width=\"599\" height=\"474\" src=\"https:\/\/ml7xv5cyrbjc.i.optimole.com\/w:auto\/h:auto\/q:auto\/https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-1.png\" alt=\"Generated HTML code\" class=\"wp-image-269\" srcset=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-1.png 599w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Screenshot-1-400x317.png 400w\" sizes=\"(max-width: 599px) 100vw, 599px\" \/><\/figure>\n\n\n\n<p>Of course, you can change the Bootstrap Grid, remove it, arrange the labels in a separate column, refrain from using Bootstrap at all, or even override the package templates&#8230;<\/p>\n\n\n\n<p>All of this can be adjusted via config globally or for a single form. You can find the full list of abilities documented in our GitHub repository:<\/p>\n\n\n\n<p><a href=\"https:\/\/github.com\/a2design-inc\/laravel-form-builder\">https:\/\/github.com\/a2design-inc\/laravel-form-builder<\/a><\/p>\n\n\n\n<p><strong>The best news of all? All the features are covered by unit tests!<br><\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Developing an application with Laravel?<\/h3>\n\n\n\n<p>The extensive Laravel ecosystem allows us to provide you with cutting-edge technological solutions of any complexity. <\/p>\n\n\n\n<p>With our Laravel development services, you can launch web services fast and get new opportunities for business expansion.<\/p>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-28206b41 wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"https:\/\/www.a2design.biz\/services\/laravel-development\" style=\"background-color:#a20b00\">A2 DESIGN LARAVEL SERVICES<\/a><\/div>\n<\/div>\n\n\n\n<p><\/p>\n\n\n\n<h2 class=\"has-text-align-left has-black-color has-text-color wp-block-heading\">OUR FEATURED LARAVEL PROJECTS<\/h2>\n\n\n\n<p>Explore some of our most exciting projects our company built using the Laravel framework. From custom web applications to e-commerce platforms, our expert Laravel developers have created powerful solutions that meet the unique needs of our clients.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">On-Demand Dog Walking Service Built with Laravel<\/h3>\n\n\n\n<p><a href=\"https:\/\/www.a2design.biz\/portfolio\/mad-paws\">MadPaws<\/a>&nbsp;is an online Sydney-based marketplace for pet sitters and pet owners. The marketplace offers a wide range of services. It provides the possibility for pet owners to find pet sitters and for pet sitters to find local jobs.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.a2design.biz\/portfolio\/mad-paws\"><img decoding=\"async\" width=\"1024\" height=\"585\" src=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-17-1024x585.png\" alt=\"MadPaws - dog walking marketplace built with Laravel\" class=\"wp-image-753\" srcset=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-17-1024x585.png 1024w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-17-400x229.png 400w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-17-768x439.png 768w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-17.png 1050w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\"><strong><em>MadPaws &#8211; dog walking marketplace built with Laravel<\/em><\/strong><\/figcaption><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Tours and Activities Platform Built with Laravel <\/h3>\n\n\n\n<p>Sightsy is a US-based startup that specializes in tours and activities.<\/p>\n\n\n\n<p>The website tools help visitors to research, discover, and experience everything their city has to offer by leveraging data and machine learning to generate personalized recommendations, thereby allowing people to spend more time enjoying a city and less time researching what\u2019s on offer.<\/p>\n\n\n\n<p><a href=\"https:\/\/a2design.biz\/portfolio\/sightsy\">Sightsy<\/a> is fully compatible with mobile devices, and users can receive and use vouchers via their phones to access deals and services without needing to print tickets, vouchers, and invoices.<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><a href=\"https:\/\/www.a2design.biz\/portfolio\/sightsy\" target=\"_blank\" rel=\"noreferrer noopener\"><img decoding=\"async\" width=\"1024\" height=\"585\" src=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-18-1024x585.png\" alt=\"Sightsy- tours and activities platform built with Laravel\" class=\"wp-image-759\" srcset=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-18-1024x585.png 1024w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-18-400x229.png 400w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-18-768x439.png 768w, https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2023\/02\/Laravel-PHP-Framework-The-Best-Choice-For-Startups-18.png 1050w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><figcaption class=\"wp-element-caption\"><strong><em>Sightsy- tours and activities platform built with Laravel<\/em><\/strong><\/figcaption><\/figure>\n\n\n\n<div class=\"wp-block-buttons is-content-justification-center is-layout-flex wp-container-core-buttons-is-layout-16018d1d wp-block-buttons-is-layout-flex\">\n<div class=\"wp-block-button\"><a class=\"wp-block-button__link has-white-color has-text-color has-background wp-element-button\" href=\"https:\/\/www.a2design.biz\/#portfolio\" style=\"background-color:#a20b00\">VIEW OUR PORTFOLIO<\/a><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>Laravel is an excellent framework on which to build an SPA. When building forms, the work typically involves some form of JavaScript. However, very often, you don\u2019t want to have the complexity of modern JavaScript frameworks and prefer to make simple pages and simple forms. That&#8217;s why we decided to build our own Form Builder [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":273,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[2],"tags":[9,8,19],"class_list":["post-267","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-web-development","tag-laravel","tag-tech","tag-web-development"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design<\/title>\n<meta name=\"description\" content=\"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.\" \/>\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.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design\" \/>\n<meta property=\"og:description\" content=\"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/\" \/>\n<meta property=\"og:site_name\" content=\"A2 Design\" \/>\n<meta property=\"article:published_time\" content=\"2019-09-16T08:04:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-11-23T11:27:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Laravel-Form-Builder.png\" \/>\n\t<meta property=\"og:image:width\" content=\"885\" \/>\n\t<meta property=\"og:image:height\" content=\"492\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Elizabeth\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Elizabeth\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/\",\"url\":\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/\",\"name\":\"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design\",\"isPartOf\":{\"@id\":\"https:\/\/www.a2design.biz\/blog\/#website\"},\"datePublished\":\"2019-09-16T08:04:34+00:00\",\"dateModified\":\"2023-11-23T11:27:58+00:00\",\"author\":{\"@id\":\"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/3f6a2bb6e559a8591cf9e55fb9b64343\"},\"description\":\"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/www.a2design.biz\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Laravel\",\"item\":\"https:\/\/www.a2design.biz\/blog\/tag\/laravel\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.a2design.biz\/blog\/#website\",\"url\":\"https:\/\/www.a2design.biz\/blog\/\",\"name\":\"A2 Design\",\"description\":\"Web Development for Startups\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.a2design.biz\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/3f6a2bb6e559a8591cf9e55fb9b64343\",\"name\":\"Elizabeth\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b938a046ae0c5bdcecad8495593bad2280eaf69c3fce1ed422faa3e776b66b6a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b938a046ae0c5bdcecad8495593bad2280eaf69c3fce1ed422faa3e776b66b6a?s=96&d=mm&r=g\",\"caption\":\"Elizabeth\"},\"url\":\"https:\/\/www.a2design.biz\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design","description":"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.","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.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/","og_locale":"en_US","og_type":"article","og_title":"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design","og_description":"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.","og_url":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/","og_site_name":"A2 Design","article_published_time":"2019-09-16T08:04:34+00:00","article_modified_time":"2023-11-23T11:27:58+00:00","og_image":[{"width":885,"height":492,"url":"https:\/\/www.a2design.biz\/blog\/wp-content\/uploads\/2019\/09\/Laravel-Form-Builder.png","type":"image\/png"}],"author":"Elizabeth","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Elizabeth","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/","url":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/","name":"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms - A2 Design","isPartOf":{"@id":"https:\/\/www.a2design.biz\/blog\/#website"},"datePublished":"2019-09-16T08:04:34+00:00","dateModified":"2023-11-23T11:27:58+00:00","author":{"@id":"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/3f6a2bb6e559a8591cf9e55fb9b64343"},"description":"Build dynamic forms that meet your needs with Laravel Form Builder. Streamline your process, increase productivity, and save time.","breadcrumb":{"@id":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.a2design.biz\/blog\/laravel-form-builder-quickly-and-easily-build-flexible-forms\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.a2design.biz\/blog\/"},{"@type":"ListItem","position":2,"name":"Laravel","item":"https:\/\/www.a2design.biz\/blog\/tag\/laravel\/"},{"@type":"ListItem","position":3,"name":"Laravel Form Builder \u2013 Quickly and Easily Build Flexible Forms"}]},{"@type":"WebSite","@id":"https:\/\/www.a2design.biz\/blog\/#website","url":"https:\/\/www.a2design.biz\/blog\/","name":"A2 Design","description":"Web Development for Startups","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.a2design.biz\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/3f6a2bb6e559a8591cf9e55fb9b64343","name":"Elizabeth","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.a2design.biz\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b938a046ae0c5bdcecad8495593bad2280eaf69c3fce1ed422faa3e776b66b6a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b938a046ae0c5bdcecad8495593bad2280eaf69c3fce1ed422faa3e776b66b6a?s=96&d=mm&r=g","caption":"Elizabeth"},"url":"https:\/\/www.a2design.biz\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/posts\/267","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/comments?post=267"}],"version-history":[{"count":0,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/posts\/267\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/media\/273"}],"wp:attachment":[{"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/media?parent=267"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/categories?post=267"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.a2design.biz\/blog\/wp-json\/wp\/v2\/tags?post=267"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}