Neeya
Neeya

Reputation: 135

View [layouts.default] not found - Laravel

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

Upvotes: 3

Views: 2242

Answers (1)

Ewomazino Ukah
Ewomazino Ukah

Reputation: 2366

Okay just looked at your folder structure, rename your layout folder to "layouts". hope that helps.

Upvotes: 3

Related Questions