12 lines
402 B
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 |