mercredi 16 mai 2018

View [parts.message-block] not found

I just added a new view to my Laravel app and when I try to load the page it throws up this error

ErrorException in FileViewFinder.php line 137: View [parts.message-block] not found.

my web.php

Route::group(['prefix' => 'contact-us'], function(){
        Route::get('', ['as' => 'contacts', function () {
            return view('contact.contacts');
        }]);
        Route::get('view-candidates', function() {
                return view('contact.candidates');
        });
 });

my candidates.blade.php

@extends('layouts.base')

@section('title', '| Candidates')

@section('contacts_active', 'active')


@section('content')


<div class="panel panel-default">

</div>
@endsection


via Chebli Mohamed

Aucun commentaire:

Enregistrer un commentaire