Skip to content

Instantly share code, notes, and snippets.

@dwaard
Created February 5, 2018 09:46
Show Gist options
  • Save dwaard/b4ee0c48d41af71f61d3f314e1927055 to your computer and use it in GitHub Desktop.
Save dwaard/b4ee0c48d41af71f61d3f314e1927055 to your computer and use it in GitHub Desktop.
Template for a page in Laravel with AdminLTE plugin from JeroenNoten
@extends('adminlte::page')
@section('title', '[Title as shown in browser tab]')
@section('content_header')
<h1>Title as shown on top of page</h1>
@stop
@push('js')
{{-- place your javascripts here --}}
@endpush
@push('css')
{{-- place your style info here --}}
@endpush
@section('content')
{{-- place the content of the pag here --}}
@stop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment