Skip to content

Instantly share code, notes, and snippets.

@finagin
Created July 17, 2017 10:16
Show Gist options
  • Select an option

  • Save finagin/57a3d597138c087a5ca41b87f63cb6bd to your computer and use it in GitHub Desktop.

Select an option

Save finagin/57a3d597138c087a5ca41b87f63cb6bd to your computer and use it in GitHub Desktop.
<!-- leyouts/app.blade.php -->
@if (View::hasSection('breadcrumb'))
@yield('breadcrumb')
@else
@yield('title', 'Dashboard')
@endif
<!-- files/create.blade.php -->
@extends('layouts.app')
@section('title', 'New file')
@section('breadcrumb')
<ol class="breadcrumb">
<li><a href="{{ route('admin.files.index') }}">Files</a></li>
<li class="active">@yield('title')</li>
</ol>
@endsection
@section('content')
Content
@endsection
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment