jeudi 11 février 2021

include navigate menu and footer are not working properly in Laravel

in my home blade I have following codes segments including _nav and _footer inside the content

@extends('layouts.app')

@section('content')
@include('partials._nav')
<div class="container">
    <div class="row justify-content-center">
        <div class="col-md-8">
            <div class="card">
                <div class="card-header">Dashboard</div>

                <div class="card-body">
                    @if (session('status'))
                        <div class="alert alert-success" role="alert">
                            
                        </div>
                    @endif

                    You are logged in!
                </div>
            </div>
        </div>
    </div>
</div>
@include('partials._footer')
@endsection

I have following looks here Alt image

how could I make proper way to view the nav and footer here....



from Newest questions tagged laravel-5 - Stack Overflow https://ift.tt/374j0Xy
via IFTTT

Aucun commentaire:

Enregistrer un commentaire