View [layouts.default] not found - Laravel

时间:2017-09-28 08:34:46

标签: laravel layout view

I am trying to run my laravel project but it showing error that view not found.

My welcome.blade.php file is

@extends('layouts.default')

@section('content')
<div class="slider">
    <div class="img-responsive">
        <ul class="bxslider">               
            <li><img src="images/slider/1.jpg" alt=""/></li>                                
            <li><img src="images/slider/2.jpg" alt=""/></li>    
            <li><img src="images/slider/3.jpg" alt=""/></li>            
        </ul>
    </div>  
    </div>

    <div class="container">
    <div class="text-center">
        <div class="wow bounceInDown" data-wow-offset="0" data-wow-delay="0.3s">
            <h3>Providing Our Clients</h3>
        </div>
        <div class="wow bounceInDown" data-wow-offset="0" data-wow-delay="0.6s">
            <h2>Best & Creative Solutions</h2>
        </div>
    </div>
    </div>

@endsection

Updated

you can see error here

file structure see here

1 个答案:

答案 0 :(得分:3)

好的,只需查看您的文件夹结构,将布局文件夹重命名为&#34; layouts&#34;。希望有所帮助。