hypothetical/resources/views/layouts/public.blade.php

15 lines
315 B
PHP
Raw Normal View History

@extends('layouts.base')
@section('page-includes')
<script src="{{ elixir('js/app.js') }}"></script>
<link rel="stylesheet" href="{{ elixir('css/app.css') }}" />
@endsection
@section('page-top')
@include('elements.nav')
@endsection
@section('page-bottom')
@include('elements.footer')
@endsection