{"id":2302,"date":"2023-11-27T05:43:21","date_gmt":"2023-11-27T05:43:21","guid":{"rendered":"https:\/\/technoyuga.com\/blog\/?p=2302"},"modified":"2023-12-09T05:29:23","modified_gmt":"2023-12-09T05:29:23","slug":"property-listing-app-laravel","status":"publish","type":"post","link":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/","title":{"rendered":"Building a Property Listing App With Laravel: A Step-by-Step Guide"},"content":{"rendered":"<p style=\"text-align: justify;\">There are various steps to creating a property listing app with Laravel. The following is a brief overview to help you through the procedure. This assumes you are familiar with Laravel and have it installed on your machine.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_1_Set_Up_Laravel\"><\/span>Step 1: Set Up Laravel<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Install Laravel:<\/p>\n<p><code>composer create-project --prefer-dist laravel\/laravel property-listing-app<\/code><\/p>\n<p>2. Navigate to the project directory:<\/p>\n<p><code>cd property-listing-app<\/code><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_2_Database_Configuration\"><\/span>Step 2: Database Configuration<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Open the <code>.env<\/code> file and configure your database connection settings.<\/p>\n<p>2. Run migrations to create necessary tables:<\/p>\n<p><code>php artisan migrate<\/code><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_3_Model_and_Migration\"><\/span>Step 3: Model and Migration<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Create a model and migration for your <code>Property<\/code>:<\/p>\n<p><code>php artisan make:model Property -m<\/code><\/p>\n<p>2. Open the generated migration file in the <code>database\/migrations<\/code> folder and define the schema for your properties.<\/p>\n<p>3. Run the migration to create the properties table:<\/p>\n<p><code>php artisan migrate<\/code><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_4_Controller\"><\/span>Step 4: Controller<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Create a controller for managing properties:<\/p>\n<p><code>php artisan make:controller PropertyController<\/code><\/p>\n<p>2. Open the generated controller in <code>app\/Http\/Controllers\/PropertyController.php<\/code> and define methods for listing, creating, updating, and deleting properties.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_5_Views\"><\/span>Step 5: Views<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Create views for listing, creating, updating, and viewing properties in the <code>resources\/views<\/code> folder.<\/p>\n<p>2. Use Blade templating to display data in your views.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_6_Routes\"><\/span>Step 6: Routes<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Define routes in the <code>routes\/web.php<\/code> file to handle property-related actions.<\/p>\n<p><code>Route::resource('properties', 'PropertyController');<\/code><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_7_Forms_and_Validation\"><\/span>Step 7: Forms and Validation<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Create forms for adding and updating properties.<\/p>\n<p>2. Use Laravel&#8217;s validation to validate form input.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_8_Authentication_Optional\"><\/span>Step 8: Authentication (Optional)<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>If you want to have user accounts and authentication:<\/p>\n<p>1. Run the authentication scaffolding:<\/p>\n<p><code>php artisan make:auth<\/code><\/p>\n<p>2. Follow the prompts to set up user authentication.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_9_Testing\"><\/span>Step 9: Testing<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Write tests for your controllers and models to ensure the application functions as expected.<\/p>\n<p>2. Run tests using:<\/p>\n<p><code>php artisan test<\/code><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_10_Front-end_Optional\"><\/span>Step 10: Front-end (Optional)<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Consider using a front-end <a href=\"https:\/\/frame.work\/\">framework<\/a> like Bootstrap or Tailwind CSS for styling.<\/p>\n<p>2. Use JavaScript to enhance user interactions if needed.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Step_11_Deployment\"><\/span>Step 11: Deployment<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>1. Configure your web server (Apache, Nginx) to serve your Laravel application.<\/p>\n<p>2. Set up your database on the production server.<\/p>\n<p>3. Update your <code>.env<\/code> file with production settings.<\/p>\n<p>4. Run any necessary deployment scripts or tasks.<\/p>\n<p>As a laravel developer you should know, that this is a basic outline, and depending on your specific requirements and needs, you may need to add more and more features, optimizations, and security measures. And Additionally, consider using Laravel packages or libraries that can help with specific functionality, such as image uploads, search functionality, etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are various steps to creating a property listing app with Laravel. The following is a brief overview to help you through the procedure. This assumes you are familiar with Laravel and have it installed on your machine. Step 1: Set Up Laravel 1. Install Laravel: composer create-project &#8211;prefer-dist laravel\/laravel property-listing-app 2. Navigate to the [&hellip;]<\/p>\n","protected":false},"author":5,"featured_media":2325,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"inline_featured_image":false,"footnotes":""},"categories":[643,6],"tags":[645,646,647,644,350],"class_list":["post-2302","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-laravel","category-news","tag-laravel","tag-laravel-app","tag-laravel-app-development","tag-property-listing-app-laravel","tag-tech-blog"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.1 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Property Listing App Laravel<\/title>\n<meta name=\"description\" content=\"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Property Listing App Laravel\" \/>\n<meta property=\"og:description\" content=\"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers\" \/>\n<meta property=\"og:url\" content=\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\" \/>\n<meta property=\"og:site_name\" content=\"Techno Yuga\" \/>\n<meta property=\"article:published_time\" content=\"2023-11-27T05:43:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-09T05:29:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"488\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Krishna Kumar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@TechnoYuga\" \/>\n<meta name=\"twitter:site\" content=\"@TechnoYuga\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Krishna Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\"},\"author\":{\"name\":\"Krishna Kumar\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/a1eff15132bbd5cc43fbea3d6efc072a\"},\"headline\":\"Building a Property Listing App With Laravel: A Step-by-Step Guide\",\"datePublished\":\"2023-11-27T05:43:21+00:00\",\"dateModified\":\"2023-12-09T05:29:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\"},\"wordCount\":342,\"publisher\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png\",\"keywords\":[\"Laravel\",\"Laravel App\",\"Laravel App Development\",\"property listing app laravel\",\"Tech blog\"],\"articleSection\":[\"Laravel\",\"News\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\",\"url\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\",\"name\":\"Property Listing App Laravel\",\"isPartOf\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png\",\"datePublished\":\"2023-11-27T05:43:21+00:00\",\"dateModified\":\"2023-12-09T05:29:23+00:00\",\"description\":\"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers\",\"breadcrumb\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage\",\"url\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png\",\"contentUrl\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png\",\"width\":1000,\"height\":488,\"caption\":\"Building a Property Listing App With Laravel\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/technoyuga.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"News\",\"item\":\"https:\/\/technoyuga.com\/blog\/category\/news\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Building a Property Listing App With Laravel: A Step-by-Step Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#website\",\"url\":\"https:\/\/technoyuga.com\/blog\/\",\"name\":\"TechnoYuga\",\"description\":\"Where Imagination Meets Innovation\",\"publisher\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/technoyuga.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#organization\",\"name\":\"TechnoYuga\",\"url\":\"https:\/\/technoyuga.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/10\/1214264511516004352.png\",\"contentUrl\":\"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/10\/1214264511516004352.png\",\"width\":200,\"height\":200,\"caption\":\"TechnoYuga\"},\"image\":{\"@id\":\"https:\/\/technoyuga.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/TechnoYuga\",\"https:\/\/www.linkedin.com\/company\/technoyuga-pvt-ltd\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/a1eff15132bbd5cc43fbea3d6efc072a\",\"name\":\"Krishna Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9b4f21a63a272318fab7aa99e31a37d3d3eb92547cd2ee8f1a195edbcd15bec3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9b4f21a63a272318fab7aa99e31a37d3d3eb92547cd2ee8f1a195edbcd15bec3?s=96&d=mm&r=g\",\"caption\":\"Krishna Kumar\"},\"description\":\"Krishna is the founder and Client success head at technoyuga Soft. He has 10+ years of experience helping startups and enterprises across the globe. Under his leadership, technoyuga has grown from 2 to 35+ tech nerds. So far, he has validated over 100+ web and Mobile app ideas for our clients and helped many startups from ideation to revenue-making businesses.\",\"sameAs\":[\"https:\/\/technoyuga.com\/blog\/\",\"https:\/\/www.linkedin.com\/in\/krishnakdewda\/\"],\"url\":\"https:\/\/technoyuga.com\/blog\/author\/technoyuga\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Property Listing App Laravel","description":"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers","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:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/","og_locale":"en_US","og_type":"article","og_title":"Property Listing App Laravel","og_description":"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers","og_url":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/","og_site_name":"Techno Yuga","article_published_time":"2023-11-27T05:43:21+00:00","article_modified_time":"2023-12-09T05:29:23+00:00","og_image":[{"width":1000,"height":488,"url":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png","type":"image\/png"}],"author":"Krishna Kumar","twitter_card":"summary_large_image","twitter_creator":"@TechnoYuga","twitter_site":"@TechnoYuga","twitter_misc":{"Written by":"Krishna Kumar","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#article","isPartOf":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/"},"author":{"name":"Krishna Kumar","@id":"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/a1eff15132bbd5cc43fbea3d6efc072a"},"headline":"Building a Property Listing App With Laravel: A Step-by-Step Guide","datePublished":"2023-11-27T05:43:21+00:00","dateModified":"2023-12-09T05:29:23+00:00","mainEntityOfPage":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/"},"wordCount":342,"publisher":{"@id":"https:\/\/technoyuga.com\/blog\/#organization"},"image":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png","keywords":["Laravel","Laravel App","Laravel App Development","property listing app laravel","Tech blog"],"articleSection":["Laravel","News"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/","url":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/","name":"Property Listing App Laravel","isPartOf":{"@id":"https:\/\/technoyuga.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage"},"image":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage"},"thumbnailUrl":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png","datePublished":"2023-11-27T05:43:21+00:00","dateModified":"2023-12-09T05:29:23+00:00","description":"Discover the step-by-step guide to creating a powerful Property Listing App Laravel. Learn how to set up the database, implement controllers","breadcrumb":{"@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#primaryimage","url":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png","contentUrl":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/11\/Building-a-Property-Listing-App-With-Laravel.png","width":1000,"height":488,"caption":"Building a Property Listing App With Laravel"},{"@type":"BreadcrumbList","@id":"https:\/\/technoyuga.com\/blog\/property-listing-app-laravel\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/technoyuga.com\/blog\/"},{"@type":"ListItem","position":2,"name":"News","item":"https:\/\/technoyuga.com\/blog\/category\/news\/"},{"@type":"ListItem","position":3,"name":"Building a Property Listing App With Laravel: A Step-by-Step Guide"}]},{"@type":"WebSite","@id":"https:\/\/technoyuga.com\/blog\/#website","url":"https:\/\/technoyuga.com\/blog\/","name":"TechnoYuga","description":"Where Imagination Meets Innovation","publisher":{"@id":"https:\/\/technoyuga.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/technoyuga.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/technoyuga.com\/blog\/#organization","name":"TechnoYuga","url":"https:\/\/technoyuga.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/technoyuga.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/10\/1214264511516004352.png","contentUrl":"https:\/\/technoyuga.com\/blog\/wp-content\/uploads\/2023\/10\/1214264511516004352.png","width":200,"height":200,"caption":"TechnoYuga"},"image":{"@id":"https:\/\/technoyuga.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/TechnoYuga","https:\/\/www.linkedin.com\/company\/technoyuga-pvt-ltd"]},{"@type":"Person","@id":"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/a1eff15132bbd5cc43fbea3d6efc072a","name":"Krishna Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/technoyuga.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9b4f21a63a272318fab7aa99e31a37d3d3eb92547cd2ee8f1a195edbcd15bec3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9b4f21a63a272318fab7aa99e31a37d3d3eb92547cd2ee8f1a195edbcd15bec3?s=96&d=mm&r=g","caption":"Krishna Kumar"},"description":"Krishna is the founder and Client success head at technoyuga Soft. He has 10+ years of experience helping startups and enterprises across the globe. Under his leadership, technoyuga has grown from 2 to 35+ tech nerds. So far, he has validated over 100+ web and Mobile app ideas for our clients and helped many startups from ideation to revenue-making businesses.","sameAs":["https:\/\/technoyuga.com\/blog\/","https:\/\/www.linkedin.com\/in\/krishnakdewda\/"],"url":"https:\/\/technoyuga.com\/blog\/author\/technoyuga\/"}]}},"_links":{"self":[{"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/posts\/2302","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/comments?post=2302"}],"version-history":[{"count":5,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/posts\/2302\/revisions"}],"predecessor-version":[{"id":2310,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/posts\/2302\/revisions\/2310"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/media\/2325"}],"wp:attachment":[{"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/media?parent=2302"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/categories?post=2302"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/technoyuga.com\/blog\/wp-json\/wp\/v2\/tags?post=2302"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}