loyalty-cms/cms-laravel/resources/views/dashboard/content.blade.php

12 lines
402 B
PHP

@extends('layouts.app')
@section('content')
@if (request()->path() && request()->path() !== '/')
<div style="background: #fff; margin-bottom: 75px; position: fixed; margin-top: -110px; width: 100%;">
@include('dashboard.breadcrumbs')
</div>
@endif
<div style="margin: 0 16px; padding: 0; background: #fff;">
@yield('content-body')
</div>
@endsection