{"id":5903,"date":"2020-08-22T11:05:03","date_gmt":"2020-08-22T11:05:03","guid":{"rendered":"https:\/\/infyblog.zluck.in\/?p=5903"},"modified":"2025-07-17T09:45:28","modified_gmt":"2025-07-17T09:45:28","slug":"use-laravel-debugbars-measure-function-to-optimize-application-performance","status":"publish","type":"post","link":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/","title":{"rendered":"Use Laravel Debugbar to Improve Performance"},"content":{"rendered":"\t\t<div data-elementor-type=\"wp-post\" data-elementor-id=\"5903\" class=\"elementor elementor-5903\" data-elementor-post-type=\"post\">\n\t\t\t\t\t\t<section class=\"elementor-section elementor-top-section elementor-element elementor-element-c8f587c elementor-section-boxed elementor-section-height-default elementor-section-height-default\" data-id=\"c8f587c\" data-element_type=\"section\">\n\t\t\t\t\t\t<div class=\"elementor-container elementor-column-gap-default\">\n\t\t\t\t\t<div class=\"elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-9995ecc\" data-id=\"9995ecc\" data-element_type=\"column\">\n\t\t\t<div class=\"elementor-widget-wrap elementor-element-populated\">\n\t\t\t\t\n\t\t<div class=\"elementor-element elementor-element-516433e elementor-widget elementor-widget-text-editor\" data-id=\"516433e\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p><a href=\"https:\/\/github.com\/barryvdh\/laravel-debugbar\">Laravel Debugbar<\/a> is a great package to debug Laravel applications while developing. But it&#8217;s not just limited to debugging. You can use it to optimize the performance of your app a lot as well. Like,<\/p><ul><li>number of models loaded in a memory<\/li><li>number of queries fired with timing<\/li><li>memory used and more.<\/li><\/ul><p>In short, we can have a complete view of what&#8217;s going on in each request.<\/p><p>But the less known and used feature it gives is the Timeline tab. Where you can see how much time is taken for each request. And more than that, how much time Laravel took to boot up and how much time our other code has taken. Check the below screenshot.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-560542a elementor-widget elementor-widget-image\" data-id=\"560542a\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img fetchpriority=\"high\" decoding=\"async\" width=\"800\" height=\"141\" src=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1-1024x181.png\" class=\"attachment-large size-large wp-image-5909\" alt=\"debugbar-timeline (1)\" srcset=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1-1024x181.png 1024w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1-300x53.png 300w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1-768x136.png 768w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1-1536x272.png 1536w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-1.png 1919w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-14259c9 elementor-widget elementor-widget-text-editor\" data-id=\"14259c9\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Recently we came to the case, where one of our consultation clients&#8217; CRM application was taking too much time on the first load. Their developers were not able to spot a problem. They checked queries and other stuff which looked completely good. so we were not sure where the time had been spent by the application.<\/p><p>That&#8217;s where debugbar came to rescue us. We used its measure function facility by which we can measure the time spent in each of the functions wherever we want to use. It gives simply two functions <span style=\"color: #e83e8c;\">startMeasure<\/span> and <span style=\"color: #e83e8c;\">stopMeasure<\/span> to measure the time spent between these two statements.<\/p><p>so we can put <span style=\"color: #e83e8c;\">startMeasure<\/span> in the starting of function and put <span style=\"color: #e83e8c;\">stopMeasure<\/span> at the end of the function which will render something like this in the timeline tab.<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-1ec7be1 elementor-widget elementor-widget-code-highlight\" data-id=\"1ec7be1\" data-element_type=\"widget\" data-widget_type=\"code-highlight.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t<div class=\"prismjs-default copy-to-clipboard \">\n\t\t\t<pre data-line=\"\" class=\"highlight-height language-javascript \">\n\t\t\t\t<code readonly=\"true\" class=\"language-javascript\">\n\t\t\t\t\t<xmp>public function searchClients($department) \r\n{     \r\n    \\Debugbar::startMeasure(\"searchClients'');\r\n    \/\/ logic here\r\n\r\n    \\Debugbar::stopMeasure(\"searchClients\");\r\n\r\n    return $result;\r\n}<\/xmp>\n\t\t\t\t<\/code>\n\t\t\t<\/pre>\n\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-19f5355 elementor-widget elementor-widget-text-editor\" data-id=\"19f5355\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Once we put this, we get a time that &lt; code &gt; searchClients is taking. Check the screenshot below,<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-a7976d1 elementor-widget elementor-widget-image\" data-id=\"a7976d1\" data-element_type=\"widget\" data-widget_type=\"image.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t<img decoding=\"async\" width=\"800\" height=\"145\" src=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure-1024x186.png\" class=\"attachment-large size-large wp-image-5916\" alt=\"debugbar-timeline-measure\" srcset=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure-1024x186.png 1024w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure-300x54.png 300w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure-768x139.png 768w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure-1536x278.png 1536w, https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline-measure.png 1920w\" sizes=\"(max-width: 800px) 100vw, 800px\" \/>\t\t\t\t\t\t\t\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"elementor-element elementor-element-0b19dd0 elementor-widget elementor-widget-text-editor\" data-id=\"0b19dd0\" data-element_type=\"widget\" data-widget_type=\"text-editor.default\">\n\t\t\t\t<div class=\"elementor-widget-container\">\n\t\t\t\t\t\t\t<p>Hope this can help you to figure out what piece of code is taking the time and you can optimize it.<\/p><p>Happy Optimizing \ud83d\ude42<\/p>\t\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t<\/section>\n\t\t\t\t<\/div>\n\t\t\n    <div class=\"xs_social_share_widget xs_share_url after_content \t\tmain_content  wslu-style-1 wslu-share-box-shaped wslu-fill-colored wslu-none wslu-share-horizontal wslu-theme-font-no wslu-main_content\">\n\n\t\t\n        <ul>\n\t\t\t        <\/ul>\n    <\/div> \n","protected":false},"excerpt":{"rendered":"<p>How to use the measure function of Laravel Debugbar to calculate the total execution time of function in&#8230;<\/p>\n","protected":false},"author":2,"featured_media":5905,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"postBodyCss":"","postBodyMargin":[],"postBodyPadding":[],"postBodyBackground":{"backgroundType":"classic","gradient":""},"two_page_speed":[],"footnotes":""},"categories":[9],"tags":[177,14,114],"class_list":["post-5903","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-laravel","tag-optimization","tag-tips","tag-troubleshooting"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Use Laravel Debugbar to Improve Performance<\/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:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Use Laravel Debugbar to Improve Performance\" \/>\n<meta property=\"og:description\" content=\"How to use the measure function of Laravel Debugbar to calculate the total execution time of function in...\" \/>\n<meta property=\"og:url\" content=\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog | InfyOm Technologies\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/infyom\" \/>\n<meta property=\"article:published_time\" content=\"2020-08-22T11:05:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-07-17T09:45:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png\" \/>\n\t<meta property=\"og:image:width\" content=\"772\" \/>\n\t<meta property=\"og:image:height\" content=\"484\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"InfyOm\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:site\" content=\"@InfyOm\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"InfyOm\" \/>\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:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\"},\"author\":{\"name\":\"InfyOm\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\"},\"headline\":\"Use Laravel Debugbar to Improve Performance\",\"datePublished\":\"2020-08-22T11:05:03+00:00\",\"dateModified\":\"2025-07-17T09:45:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\"},\"wordCount\":301,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png\",\"keywords\":[\"Optimization\",\"Tips\",\"Troubleshooting\"],\"articleSection\":[\"Laravel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\",\"url\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\",\"name\":\"Use Laravel Debugbar to Improve Performance\",\"isPartOf\":{\"@id\":\"https:\/\/infyom.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png\",\"datePublished\":\"2020-08-22T11:05:03+00:00\",\"dateModified\":\"2025-07-17T09:45:28+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png\",\"width\":772,\"height\":484,\"caption\":\"Use Laravel Debugbar's measure function to optimize application performance\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/infyom.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Use Laravel Debugbar to Improve Performance\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/infyom.com\/blog\/#website\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"name\":\"Blog | InfyOm Technologies\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/infyom.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/infyom.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/infyom.com\/blog\/#organization\",\"name\":\"InfyOm Technologies\",\"url\":\"https:\/\/infyom.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"contentUrl\":\"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png\",\"width\":88,\"height\":41,\"caption\":\"InfyOm Technologies\"},\"image\":{\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/infyom\",\"https:\/\/x.com\/InfyOm\",\"https:\/\/www.instagram.com\/infyomtechnologies\/\",\"https:\/\/in.linkedin.com\/company\/infyom-technologies\",\"https:\/\/github.com\/infyomlabs\",\"https:\/\/x.com\/infyom\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754\",\"name\":\"InfyOm\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g\",\"caption\":\"InfyOm\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Use Laravel Debugbar to Improve Performance","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:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/","og_locale":"en_US","og_type":"article","og_title":"Use Laravel Debugbar to Improve Performance","og_description":"How to use the measure function of Laravel Debugbar to calculate the total execution time of function in...","og_url":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/","og_site_name":"Blog | InfyOm Technologies","article_publisher":"https:\/\/www.facebook.com\/infyom","article_published_time":"2020-08-22T11:05:03+00:00","article_modified_time":"2025-07-17T09:45:28+00:00","og_image":[{"width":772,"height":484,"url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png","type":"image\/png"}],"author":"InfyOm","twitter_card":"summary_large_image","twitter_creator":"@InfyOm","twitter_site":"@InfyOm","twitter_misc":{"Written by":"InfyOm","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#article","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/"},"author":{"name":"InfyOm","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754"},"headline":"Use Laravel Debugbar to Improve Performance","datePublished":"2020-08-22T11:05:03+00:00","dateModified":"2025-07-17T09:45:28+00:00","mainEntityOfPage":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/"},"wordCount":301,"commentCount":0,"publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"image":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png","keywords":["Optimization","Tips","Troubleshooting"],"articleSection":["Laravel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/","url":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/","name":"Use Laravel Debugbar to Improve Performance","isPartOf":{"@id":"https:\/\/infyom.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage"},"image":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage"},"thumbnailUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png","datePublished":"2020-08-22T11:05:03+00:00","dateModified":"2025-07-17T09:45:28+00:00","breadcrumb":{"@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#primaryimage","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/08\/debugbar-timeline.png","width":772,"height":484,"caption":"Use Laravel Debugbar's measure function to optimize application performance"},{"@type":"BreadcrumbList","@id":"https:\/\/infyom.com\/blog\/use-laravel-debugbars-measure-function-to-optimize-application-performance\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/infyom.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Use Laravel Debugbar to Improve Performance"}]},{"@type":"WebSite","@id":"https:\/\/infyom.com\/blog\/#website","url":"https:\/\/infyom.com\/blog\/","name":"Blog | InfyOm Technologies","description":"","publisher":{"@id":"https:\/\/infyom.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/infyom.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/infyom.com\/blog\/#organization","name":"InfyOm Technologies","url":"https:\/\/infyom.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","contentUrl":"https:\/\/infyom.com\/blog\/wp-content\/uploads\/2024\/06\/InfyOm-Logo.png","width":88,"height":41,"caption":"InfyOm Technologies"},"image":{"@id":"https:\/\/infyom.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/infyom","https:\/\/x.com\/InfyOm","https:\/\/www.instagram.com\/infyomtechnologies\/","https:\/\/in.linkedin.com\/company\/infyom-technologies","https:\/\/github.com\/infyomlabs","https:\/\/x.com\/infyom"]},{"@type":"Person","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/659bfc844c333d041221e83c5f5ec754","name":"InfyOm","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/infyom.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ad162864d8d33c04ea9e6d0333cc483?s=96&d=mm&r=g","caption":"InfyOm"}}]}},"_links":{"self":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/5903","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/comments?post=5903"}],"version-history":[{"count":23,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/5903\/revisions"}],"predecessor-version":[{"id":8198,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/posts\/5903\/revisions\/8198"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media\/5905"}],"wp:attachment":[{"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/media?parent=5903"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/categories?post=5903"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/infyom.com\/blog\/wp-json\/wp\/v2\/tags?post=5903"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}