{"id":492478,"date":"2025-05-28T13:17:36","date_gmt":"2025-05-28T13:17:36","guid":{"rendered":"https:\/\/webkul.com\/blog\/?p=492478"},"modified":"2025-05-28T13:20:28","modified_gmt":"2025-05-28T13:20:28","slug":"cs-cart-datagrid-faster-project-delivery","status":"publish","type":"post","link":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/","title":{"rendered":"CS-Cart DataGrid for Faster Project Delivery"},"content":{"rendered":"\n<p>When working on large or small-scale projects in CS-Cart, managing CRUD operations in the admin panel can be time-consuming. <\/p>\n\n\n\n<p>That\u2019s where the <strong>CS-Cart DataGrid<\/strong> comes in\u2014a custom solution designed to drastically <strong>reduce development time<\/strong> and deliver <strong>faster<\/strong> <strong>projects<\/strong> with minimal effort.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">What is CS-Cart DataGrid?<\/h2>\n\n\n\n<p>CS-Cart DataGrid is a versatile and reusable CRUD component built specifically for CS-Cart and admin panels. <strong>Moreover,<\/strong> it simplifies CRUD operations, making <a href=\"https:\/\/webkul.com\/cs-cart-development\/\">CS-Cart development<\/a> faster and easier.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>How is DataGrid Time-Saving and Cost-Effective for Your Projects?<\/strong><\/h2>\n\n\n\n<p>DataGrid helps save time by handling common tasks like filtering, sorting, exporting, and bulk actions. <strong>Additionally,<\/strong> it\u2019s easy to set up and use, which makes managing CRUD faster and smoother.<\/p>\n\n\n\n<p><strong>In CS-Cart projects,<\/strong> basic tasks like creating or updating records can be done in hours instead of days. <strong>As a result,<\/strong> this means quicker delivery, lower costs, and happier clients.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Key Features of DataGrid&#8217;s<\/h2>\n\n\n\n<p>DataGrid is built using CS-Cart\u2019s core tools, so it works smoothly and performs well. Here are the features<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Pagination<\/li>\n\n\n\n<li>Sorting<\/li>\n\n\n\n<li>Filtering<\/li>\n\n\n\n<li>Search<\/li>\n\n\n\n<li>Bulk actions ( Bulk delete, update, etc.)<\/li>\n\n\n\n<li>Export data ( CSV, XML )<\/li>\n\n\n\n<li>Editable in fields<\/li>\n\n\n\n<li>Save Searches<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">How Developers Easily Develop a <strong>CRUD using DataGrid<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">How DataGrid Works<\/h3>\n\n\n\n<p>To use DataGrid in a CS-Cart project, the <a href=\"https:\/\/webkul.com\/hire-cs-cart-developers\/\">CS-Cart Developer<\/a> simply creates the DataGrid, view, and route handler files. After that, customize the DataGrid as needed, and the CRUD interface is ready<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Sample DataGrid<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace DataGrid;\n\nuse Tygh\\Addons\\Wkdatagrid\\DataGrid\\src\\DataGrid;\n\nclass EmployeeDataGrid extends DataGrid\n{\n    public function prepareQueryBuilder() {\n     \/\/ sql queries\n    }\n\n    public function prepareColumns(): void\n    {\n        $this-&gt;addColumn(&#091;\n            &#039;index&#039;      =&gt; &#039;e.name&#039;, \/\/table column name\n            &#039;label&#039;      =&gt; __(&#039;name&#039;),\n            &#039;type&#039;       =&gt; &#039;string&#039;, \/\/Boolean, Date, Integer, Text, Datetime\n            &#039;sortable&#039;   =&gt; true,\n            &#039;searchable&#039; =&gt; true,\n            &#039;filterable&#039; =&gt; true,\n            &#039;closure&#039;    =&gt; function($row) {\n                return ($row-&gt;status) ? &#039;Active&#039; : &#039;Disabled&#039;;\n             } \/\/customization to the value.\n        ]);\n   }\n\n   public function prepareActions()\n    {\n        $this-&gt;addAction(&#091;\n            &#039;icon&#039;   =&gt; &#039;ty-icon-delete&#039;,\n            &#039;title&#039;  =&gt; __(&#039;delete&#039;),\n            &#039;class&#039;  =&gt; &#039;cm-ajax cm-confirm&#039;,\n            &#039;method&#039; =&gt; &#039;POST&#039;,\n            &#039;type&#039;   =&gt; &#039;delete&#039;,\n            &#039;url&#039;    =&gt; function ($row) {\n                return fn_url(&quot;wk_erp_saved.delete?id=$row-&gt;id&quot;, &#039;A&#039;);\n            },\n        ]);\n    }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Handing Route<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">&lt;?php\nnamespace EmployeeController;\n\nuse Tygh\\Tygh;\nuse Tygh\\Registry;\nuse DataGrid\\EmployeeDataGrid;\n\nrequire_once(Registry::get(&#039;config.dir.addons&#039;) . &#039;wk_datagrid\/src\/DataGrid\/src\/Http\/helpers.php&#039;);\n\nclass Employee extends BaseController\n{\n   public function __construct($mode)\n    {\n        parent::__construct($mode);\n\n        $this-&gt;setRunMode(&#091;&#039;m_delete&#039;, &#039;m_update&#039;, &#039;update&#039;, &#039;delete&#039;, &#039;manage&#039;]);\n\n        if (in_array($this-&gt;mode, $this-&gt;runMode)) {\n            $this-&gt;$mode();\n        }\n    }\n\n    public function manage()\n    {\n\n        list($lists, $search) = fn_datagrid(EmployeeDataGrid::class)-&gt;process();\n\n        Tygh::$app&#091;&#039;view&#039;]-&gt;assign(&#039;lists&#039;, $lists);\n        Tygh::$app&#091;&#039;view&#039;]-&gt;assign(&#039;search&#039;, $search);\n    }\n}<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\">Render DataGrid<\/h3>\n\n\n\n<pre class=\"EnlighterJSRAW\">{include file=&quot;addons\/wk_datagrid\/data-grid.tpl&quot; \n    search_form_dispatch=&quot;emp.manage&quot;\n    saved_search_name=&quot;emp&quot;\n    export=true\n    is_editable=&quot;emp.m_update&quot;\n    page_title=__(&#039;emp.erp_templates&#039;)\n    search_form_prefix=&quot;emp&quot;\n    content_id=&quot;content_emp&quot;\n    name=&quot;emp&quot;\n    search_label=&quot;Search Templates&quot;\n    data=$lists\n    hook=&quot;emp&quot;\n    column_width=&#091;10,10,25,30,10]\n}<\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Why Use DataGrid?<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Rapid Setup:<\/strong> No need to manually handle sorting, pagination, exporting data, or filtering logic.<\/li>\n\n\n\n<li><strong>Reusable Architecture:<\/strong> Define columns, filters, actions, and queries in a clean, organized structure. <\/li>\n\n\n\n<li><strong>Fully Extensible:<\/strong> Easily integrates with add-ons or custom admin modules.<\/li>\n\n\n\n<li><strong>Performance-Oriented:<\/strong> Built to handle large datasets efficiently using optimized SQL.<\/li>\n\n\n\n<li><strong>Clean UI Integration:<\/strong> Grids are rendered using native Smarty templates or can be customized.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Support:<\/h2>\n\n\n\n<p>Still have any queries, feel free to ask by creating a ticket&nbsp;<a href=\"http:\/\/webkul.uvdesk.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">http:\/\/webkul.uvdesk.com<\/a><\/p>\n\n\n\n<p>Besides this, you can explore our&nbsp;<a href=\"https:\/\/webkul.com\/cs-cart-development\/\" target=\"_blank\" rel=\"noreferrer noopener\">CS-Cart Development Services<\/a>&nbsp;and Quality&nbsp;<a href=\"https:\/\/store.webkul.com\/CS-Cart.html\" target=\"_blank\" rel=\"noreferrer noopener\">CS-Cart add-ons.<\/a><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>When working on large or small-scale projects in CS-Cart, managing CRUD operations in the admin panel can be time-consuming. That\u2019s where the CS-Cart DataGrid comes in\u2014a custom solution designed to drastically reduce development time and deliver faster projects with minimal effort. What is CS-Cart DataGrid? CS-Cart DataGrid is a versatile and reusable CRUD component built <a href=\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\">[&#8230;]<\/a><\/p>\n","protected":false},"author":530,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[1661,7274],"class_list":["post-492478","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-cs-cart","tag-datagrid"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v24.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>CS-Cart DataGrid for Faster Project Delivery - Webkul Blog<\/title>\n<meta name=\"description\" content=\"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CS-Cart DataGrid for Faster Project Delivery - Webkul Blog\" \/>\n<meta property=\"og:description\" content=\"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\" \/>\n<meta property=\"og:site_name\" content=\"Webkul Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/webkul\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-05-28T13:17:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-05-28T13:20:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"630\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Yash Gupta\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@webkul\" \/>\n<meta name=\"twitter:site\" content=\"@webkul\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Yash Gupta\" \/>\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\",\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\"},\"author\":{\"name\":\"Yash Gupta\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae\"},\"headline\":\"CS-Cart DataGrid for Faster Project Delivery\",\"datePublished\":\"2025-05-28T13:17:36+00:00\",\"dateModified\":\"2025-05-28T13:20:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\"},\"wordCount\":339,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"keywords\":[\"cs-cart\",\"DataGrid\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\",\"url\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\",\"name\":\"CS-Cart DataGrid for Faster Project Delivery - Webkul Blog\",\"isPartOf\":{\"@id\":\"https:\/\/webkul.com\/blog\/#website\"},\"datePublished\":\"2025-05-28T13:17:36+00:00\",\"dateModified\":\"2025-05-28T13:20:28+00:00\",\"description\":\"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.\",\"breadcrumb\":{\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/webkul.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CS-Cart DataGrid for Faster Project Delivery\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/webkul.com\/blog\/#website\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"name\":\"Webkul Blog\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/webkul.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/webkul.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/webkul.com\/blog\/#organization\",\"name\":\"WebKul Software Private Limited\",\"url\":\"https:\/\/webkul.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"contentUrl\":\"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png\",\"width\":380,\"height\":380,\"caption\":\"WebKul Software Private Limited\"},\"image\":{\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/webkul\/\",\"https:\/\/x.com\/webkul\",\"https:\/\/www.instagram.com\/webkul\/\",\"https:\/\/www.linkedin.com\/company\/webkul\",\"https:\/\/www.youtube.com\/user\/webkul\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae\",\"name\":\"Yash Gupta\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g\",\"caption\":\"Yash Gupta\"},\"url\":\"https:\/\/webkul.com\/blog\/author\/yashgupta-wp766\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CS-Cart DataGrid for Faster Project Delivery - Webkul Blog","description":"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.","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:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/","og_locale":"en_US","og_type":"article","og_title":"CS-Cart DataGrid for Faster Project Delivery - Webkul Blog","og_description":"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.","og_url":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/","og_site_name":"Webkul Blog","article_publisher":"https:\/\/www.facebook.com\/webkul\/","article_published_time":"2025-05-28T13:17:36+00:00","article_modified_time":"2025-05-28T13:20:28+00:00","og_image":[{"width":1200,"height":630,"url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-og.png","type":"image\/png"}],"author":"Yash Gupta","twitter_card":"summary_large_image","twitter_creator":"@webkul","twitter_site":"@webkul","twitter_misc":{"Written by":"Yash Gupta","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#article","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/"},"author":{"name":"Yash Gupta","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae"},"headline":"CS-Cart DataGrid for Faster Project Delivery","datePublished":"2025-05-28T13:17:36+00:00","dateModified":"2025-05-28T13:20:28+00:00","mainEntityOfPage":{"@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/"},"wordCount":339,"commentCount":0,"publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"keywords":["cs-cart","DataGrid"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/","url":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/","name":"CS-Cart DataGrid for Faster Project Delivery - Webkul Blog","isPartOf":{"@id":"https:\/\/webkul.com\/blog\/#website"},"datePublished":"2025-05-28T13:17:36+00:00","dateModified":"2025-05-28T13:20:28+00:00","description":"Build fast, sortable, and searchable admin tables in CS-Cart with DataGrid for quicker project delivery and better backend management.","breadcrumb":{"@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/webkul.com\/blog\/cs-cart-datagrid-faster-project-delivery\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/webkul.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CS-Cart DataGrid for Faster Project Delivery"}]},{"@type":"WebSite","@id":"https:\/\/webkul.com\/blog\/#website","url":"https:\/\/webkul.com\/blog\/","name":"Webkul Blog","description":"","publisher":{"@id":"https:\/\/webkul.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/webkul.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/webkul.com\/blog\/#organization","name":"WebKul Software Private Limited","url":"https:\/\/webkul.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","contentUrl":"https:\/\/cdnblog.webkul.com\/blog\/wp-content\/uploads\/2021\/08\/webkul-logo-accent-sq.png","width":380,"height":380,"caption":"WebKul Software Private Limited"},"image":{"@id":"https:\/\/webkul.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/webkul\/","https:\/\/x.com\/webkul","https:\/\/www.instagram.com\/webkul\/","https:\/\/www.linkedin.com\/company\/webkul","https:\/\/www.youtube.com\/user\/webkul\/"]},{"@type":"Person","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/9c34caa3f4c420c0d8438a50b087ebae","name":"Yash Gupta","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/webkul.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/f40fe01c9ce421fdc497c9d9b886fdc92e4a8c64b7703708c68717d22db539d5?s=96&d=https%3A%2F%2Fcdnblog.webkul.com%2Fblog%2Fwp-content%2Fuploads%2F2019%2F10%2Fmike.png&r=g","caption":"Yash Gupta"},"url":"https:\/\/webkul.com\/blog\/author\/yashgupta-wp766\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/492478","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/users\/530"}],"replies":[{"embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/comments?post=492478"}],"version-history":[{"count":120,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/492478\/revisions"}],"predecessor-version":[{"id":493991,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/posts\/492478\/revisions\/493991"}],"wp:attachment":[{"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/media?parent=492478"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/categories?post=492478"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/webkul.com\/blog\/wp-json\/wp\/v2\/tags?post=492478"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}