{"id":6474,"date":"2026-08-26T11:49:51","date_gmt":"2026-08-26T09:49:51","guid":{"rendered":"https:\/\/volcanicinternet.com\/?p=6474"},"modified":"2026-08-26T11:49:51","modified_gmt":"2026-08-26T09:49:51","slug":"laravel-vibe-coding-vs-ingenieria-agentica","status":"publish","type":"post","link":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/","title":{"rendered":"Vibe coding vs. agentic engineering in Laravel: how we do it with Laravel Boost, Pest 5, and Rector"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Vibe coding works well at first. The problems start once the project is in production and something breaks. That&#8217;s\n  when you find:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n  <li>Code nobody remembers writing and nobody understands.<\/li>\n  \n\n  \n  <li>No tests covering that code.<\/li>\n  \n\n  \n  <li>Fear of touching anything, because you don&#8217;t know what will break.<\/li>\n  \n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Agentic engineering is the alternative. It is a set of tools and practices for using AI (artificial intelligence)\n  in an integrated, controlled way across the whole project. Three stand out in the Laravel ecosystem: Laravel Boost,\n  Pest 5, and Rector.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Two very different ways of using the same AI<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Vibe coding is conversational. You describe what you want, accept what comes out, and iterate until it works. It is\n  very fast for prototyping, but it uses a lot of resources: the model has to work out the code&#8217;s relationships and\n  logic, and it rarely knows the whole project. We are not against it. At Volcanic we have used it, and that is why we\n  know its limits.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Agentic engineering is a different thing. It is not only about writing code faster: it is about keeping the project\n  coherent. The agent writes code within clear limits, validates its own output automatically, and leaves a person in\n  control at every step. Even so, each team decides how much AI to use and when.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Laravel Boost: real context for the agent<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">When an agent does not know your project, it invents class names. Sometimes it also invents database columns or\n  tables. This is called hallucination.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">To avoid it, we use <a href=\"https:\/\/laravel.com\/docs\/12.x\/boost\">Laravel Boost<\/a>, an official package that gives\n  a generalist agent context about your application.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Boost exposes an MCP server (Model Context Protocol: the standard that connects AI agents to external tools) with\n  more than 15 tools: Eloquent model introspection, database schema, routes, Tinker, and logs. It also includes a\n  documentation API (a way for two pieces of software to talk to each other) with more than 17,000 snippets from the\n  Laravel ecosystem. Search is semantic and tuned to the versions you have installed. With Boost, the agent stops\n  guessing.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Boost also stores your team&#8217;s conventions. The <code>record-rule<\/code> tool writes them to <code>.ai\/rules<\/code>,\n  under version control. A rule such as \u201camounts are stored as integers in cents, never as floats\u201d stops being a\n  comment on a code review and becomes a system-level constraint. In practice, that file is the team&#8217;s memory.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Pest 5: tests that verify the agent<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">For tests, we use <a href=\"https:\/\/pestphp.com\/docs\/pest5-now-available\">Pest 5<\/a>. Pest 5 brings 3 pieces that\n  change the workflow.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The Agent plugin<\/strong> gives the agent a command to check whether its change really works. The command\n  runs inside the real test environment, with factories, <code>RefreshDatabase<\/code>, and Laravel&#8217;s fakes.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The TIA engine<\/strong> (Test Impact Analysis: it detects which tests a change affects) reruns only the\n  affected tests and replays the rest from cache. Coverage loses no fidelity. Laravel Cloud&#8217;s suite, with more than\n  19,000 tests, went from 3 minutes to 5 seconds.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>The Evals plugin<\/strong> scores the output of an LLM (large language model) with the same familiar\n  <code>expect()<\/code> API. It combines deterministic checks with LLM-as-judge scorers, where another model evaluates\n  the response: <code>toBeRelevant()<\/code>, <code>toBeFactual()<\/code>, <code>toBeSafe()<\/code>,\n  <code>toHaveToolCalls()<\/code>, and <code>toFollowTrajectory()<\/code>. Evals only run when you pass\n  <code>--evals<\/code>, so they do not slow down everyday CI (continuous integration).<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Rector + agent: what&#8217;s mechanical and what isn&#8217;t<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">On legacy projects we combine 2 tools. <a href=\"https:\/\/github.com\/rectorphp\/rector\">Rector<\/a> handles the\n  mechanical, deterministic transformations: version upgrades, typing, and syntax normalisation. The agent only steps\n  in where Rector cannot reason. For example: extracting a service from a 900-line controller, breaking a circular\n  dependency, or writing the missing tests before touching anything. Pest 5 already ships first-party plugins for\n  Rector and PHPStan, so all 3 pieces live in the same command.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What a person always reviews<\/h3>\n\n\n\n<p class=\"wp-block-paragraph\">None of these tools replaces human review. Our rule is simple: the agent can propose any change, but 3 kinds of\n  change need a named person&#8217;s sign-off.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n  <li>Migrations that touch existing data.<\/li>\n  \n\n  \n  <li>Changes to authentication, permissions, or payments.<\/li>\n  \n\n  \n  <li>Any access to personal data.<\/li>\n  \n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">There is one more rule, less exciting but just as important: the agent has no production credentials. It always\n  works against development environments with anonymised data. On a client project, that is not a technical\n  preference: it is compliance.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Should you use agents in your Laravel project? 5 questions<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Answer these 5 questions before you invest a single euro.<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n  <li><strong>Do you have tests?<\/strong> If you don&#8217;t, start there. An agent without a test suite generates technical\n    debt very quickly.<\/li>\n  \n\n  \n  <li><strong>Do you know how long a change takes to reach production today?<\/strong> Measure that time before you\n    start. Without a baseline you cannot calculate ROI (return on investment): you only have impressions.<\/li>\n  \n\n  \n  <li><strong>Who signs off on each change?<\/strong> Define who approves what before you give the agent access.<\/li>\n  \n\n  \n  <li><strong>What data does the agent touch?<\/strong> If it touches personal, health, or financial data, the agent&#8217;s\n    working environment changes completely.<\/li>\n  \n\n  \n  <li><strong>Is this a speed problem or a clarity problem?<\/strong> Agents speed up execution. If the scope is poorly\n    defined, they execute it faster and worse. Define the scope first.<\/li>\n  \n<\/ol>\n\n\n\n<p class=\"wp-block-paragraph\">Did you recognise your team in any of these questions, especially the one about scope? Let&#8217;s talk. At Volcanic, we\n  help teams running Laravel in production decide where to use agents and where not to. If that sounds like a fit, <a href=\"https:\/\/volcanicinternet.com\/en\/contact\/\">get in touch and we&#8217;ll take a look together<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Vibe coding works well at first. The problems&#8230;<\/p>\n","protected":false},"author":7,"featured_media":6479,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"wpce_document_language":"","_kad_blocks_custom_css":"","_kad_blocks_head_custom_js":"","_kad_blocks_body_custom_js":"","_kad_blocks_footer_custom_js":"","footnotes":""},"categories":[41],"tags":[],"class_list":["post-6474","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-asana-2-en"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica<\/title>\n<meta name=\"description\" content=\"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica\" \/>\n<meta property=\"og:description\" content=\"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/\" \/>\n<meta property=\"og:site_name\" content=\"Volcanic Internet\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/volcanicinternet\" \/>\n<meta property=\"article:published_time\" content=\"2026-08-26T09:49:51+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1093\" \/>\n\t<meta property=\"og:image:height\" content=\"710\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Adri\u00e0 Molina\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@volcanictech\" \/>\n<meta name=\"twitter:site\" content=\"@volcanictech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Adri\u00e0 Molina\" \/>\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\":\"Article\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/\"},\"author\":{\"name\":\"Adri\u00e0 Molina\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#\\\/schema\\\/person\\\/b2562fb411985b89c79a691ffdf4ee96\"},\"headline\":\"Vibe coding vs. agentic engineering in Laravel: how we do it with Laravel Boost, Pest 5, and Rector\",\"datePublished\":\"2026-08-26T09:49:51+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/\"},\"wordCount\":894,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/08\\\/laravel.png\",\"articleSection\":[\"Asana\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/\",\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/\",\"name\":\"Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/08\\\/laravel.png\",\"datePublished\":\"2026-08-26T09:49:51+00:00\",\"description\":\"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#primaryimage\",\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/08\\\/laravel.png\",\"contentUrl\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/08\\\/laravel.png\",\"width\":1093,\"height\":710},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/laravel-vibe-coding-vs-ingenieria-agentica\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Inici\",\"item\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Vibe coding vs. agentic engineering in Laravel: how we do it with Laravel Boost, Pest 5, and Rector\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/\",\"name\":\"Volcanic Internet\",\"description\":\"P\u00e0gines web, aplicacions m\u00f2bils, desenvolupament a mida\",\"publisher\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#organization\",\"name\":\"Volcanic Internet\",\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/06\\\/volcanic_logo.svg\",\"contentUrl\":\"https:\\\/\\\/volcanicinternet.com\\\/app\\\/uploads\\\/2026\\\/06\\\/volcanic_logo.svg\",\"width\":321,\"height\":40,\"caption\":\"Volcanic Internet\"},\"image\":{\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/volcanicinternet\",\"https:\\\/\\\/x.com\\\/volcanictech\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/#\\\/schema\\\/person\\\/b2562fb411985b89c79a691ffdf4ee96\",\"name\":\"Adri\u00e0 Molina\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g\",\"caption\":\"Adri\u00e0 Molina\"},\"url\":\"https:\\\/\\\/volcanicinternet.com\\\/en\\\/author\\\/adriavolcanicinternet-com\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica","description":"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.","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:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/","og_locale":"en_US","og_type":"article","og_title":"Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica","og_description":"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.","og_url":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/","og_site_name":"Volcanic Internet","article_publisher":"https:\/\/www.facebook.com\/volcanicinternet","article_published_time":"2026-08-26T09:49:51+00:00","og_image":[{"width":1093,"height":710,"url":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png","type":"image\/png"}],"author":"Adri\u00e0 Molina","twitter_card":"summary_large_image","twitter_creator":"@volcanictech","twitter_site":"@volcanictech","twitter_misc":{"Written by":"Adri\u00e0 Molina","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#article","isPartOf":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/"},"author":{"name":"Adri\u00e0 Molina","@id":"https:\/\/volcanicinternet.com\/en\/#\/schema\/person\/b2562fb411985b89c79a691ffdf4ee96"},"headline":"Vibe coding vs. agentic engineering in Laravel: how we do it with Laravel Boost, Pest 5, and Rector","datePublished":"2026-08-26T09:49:51+00:00","mainEntityOfPage":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/"},"wordCount":894,"commentCount":0,"publisher":{"@id":"https:\/\/volcanicinternet.com\/en\/#organization"},"image":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#primaryimage"},"thumbnailUrl":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png","articleSection":["Asana"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/","url":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/","name":"Laravel - Vibe coding vs. ingenier\u00eda ag\u00e9ntica","isPartOf":{"@id":"https:\/\/volcanicinternet.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#primaryimage"},"image":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#primaryimage"},"thumbnailUrl":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png","datePublished":"2026-08-26T09:49:51+00:00","description":"How we use agentic engineering with AI in Laravel: Laravel Boost, Pest 5, and Rector to stay in control when agents write real code.","breadcrumb":{"@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#primaryimage","url":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png","contentUrl":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel.png","width":1093,"height":710},{"@type":"BreadcrumbList","@id":"https:\/\/volcanicinternet.com\/en\/laravel-vibe-coding-vs-ingenieria-agentica\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Inici","item":"https:\/\/volcanicinternet.com\/en\/"},{"@type":"ListItem","position":2,"name":"Vibe coding vs. agentic engineering in Laravel: how we do it with Laravel Boost, Pest 5, and Rector"}]},{"@type":"WebSite","@id":"https:\/\/volcanicinternet.com\/en\/#website","url":"https:\/\/volcanicinternet.com\/en\/","name":"Volcanic Internet","description":"P\u00e0gines web, aplicacions m\u00f2bils, desenvolupament a mida","publisher":{"@id":"https:\/\/volcanicinternet.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/volcanicinternet.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/volcanicinternet.com\/en\/#organization","name":"Volcanic Internet","url":"https:\/\/volcanicinternet.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/volcanicinternet.com\/en\/#\/schema\/logo\/image\/","url":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/06\/volcanic_logo.svg","contentUrl":"https:\/\/volcanicinternet.com\/app\/uploads\/2026\/06\/volcanic_logo.svg","width":321,"height":40,"caption":"Volcanic Internet"},"image":{"@id":"https:\/\/volcanicinternet.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/volcanicinternet","https:\/\/x.com\/volcanictech"]},{"@type":"Person","@id":"https:\/\/volcanicinternet.com\/en\/#\/schema\/person\/b2562fb411985b89c79a691ffdf4ee96","name":"Adri\u00e0 Molina","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a95a37aba79b790fc1318b6c6006b158941697c4bc08b1cade87a73b53e33438?s=96&d=mm&r=g","caption":"Adri\u00e0 Molina"},"url":"https:\/\/volcanicinternet.com\/en\/author\/adriavolcanicinternet-com\/"}]}},"taxonomy_info":{"category":[{"value":41,"label":"Asana"}]},"featured_image_src_large":["https:\/\/volcanicinternet.com\/app\/uploads\/2026\/08\/laravel-1024x665.png",1024,665,true],"author_info":{"display_name":"Adri\u00e0 Molina","author_link":"https:\/\/volcanicinternet.com\/en\/author\/adriavolcanicinternet-com\/"},"comment_info":0,"category_info":[{"term_id":41,"name":"Asana","slug":"asana-2-en","term_group":0,"term_taxonomy_id":41,"taxonomy":"category","description":"","parent":0,"count":10,"filter":"raw","cat_ID":41,"category_count":10,"category_description":"","cat_name":"Asana","category_nicename":"asana-2-en","category_parent":0}],"tag_info":false,"_links":{"self":[{"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/posts\/6474","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/comments?post=6474"}],"version-history":[{"count":5,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/posts\/6474\/revisions"}],"predecessor-version":[{"id":6555,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/posts\/6474\/revisions\/6555"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/media\/6479"}],"wp:attachment":[{"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/media?parent=6474"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/categories?post=6474"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/volcanicinternet.com\/en\/wp-json\/wp\/v2\/tags?post=6474"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}