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
how could I make proper way to view the nav and footer here....
via Chebli Mohamed
Aucun commentaire:
Enregistrer un commentaire