# Why master.blade.php Isn't Processed in Laravel

DevFeed: [Why master.blade.php Isn't Processed in Laravel](<https://devfeed.tech/articles/why-master-blade-php-isn-t-processed-in-laravel-28189.md>)

Original publisher: [Read original article](<http://fuzzyblog.io/blog/laravel/2021/12/22/why-master-blade-php-isn-t-processed-in-laravel.html>)

Author: Fuzzygroup

Published: 2021-12-22T01:17:00Z

Content type: tutorial

Language: en

Sources: [Scott Johnson](<https://devfeed.tech/sources/scott-johnson.md>)

Topics: [Laravel](<https://devfeed.tech/topics/laravel.md>), [PHP](<https://devfeed.tech/topics/php.md>)

Tags: [laravel](<https://devfeed.tech/tags/laravel.md>), [php](<https://devfeed.tech/tags/php.md>)

## AI overview

A Laravel Blade template was not being processed because its filename lacked the .blade. suffix. Renaming order_submitter_index.php to order_submitter_index.blade.php resolved the issue.

## Source excerpt

I had the situation earlier where commands like: @extends('layouts.master') @section('title', 'Order Submitter LegendBorne Products') @section('content') in my template weren't being processed and this led me to do the normal bit of Google fu, alas, to no avail. And then I looked at the name of my template: order_submitter_index.php Yes - that's right. I was missing the .blade. suffix so a quick rename to: order_submitter_index.blade.php And all worked perfectly.