Move app.blade.php into layouts folder

This is to follow the Laravel convention, but also to separate the
blades from overall views, to individual views.
This commit is contained in:
Birger J. Nordølum 2018-06-21 13:18:41 +02:00
parent 0203440b06
commit 30554fbdf5
No known key found for this signature in database
GPG key ID: 1E2DC712B50089CC
12 changed files with 22 additions and 22 deletions

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -9,4 +9,4 @@
@endsection
@section('scripts')
@include('items.scripts')
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -9,4 +9,4 @@
@endsection
@section('scripts')
@include('items.scripts')
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
<section class="module-container">
@ -53,4 +53,4 @@
</section>
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
<section class="module-container">
@ -49,4 +49,4 @@
</section>
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -6,4 +6,4 @@
@include('settings.form')
{!! Form::close() !!}
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -49,4 +49,4 @@
</section>
@endforeach
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -9,4 +9,4 @@
@endsection
@section('scripts')
@include('tags.scripts')
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@ -9,4 +9,4 @@
@endsection
@section('scripts')
@include('tags.scripts')
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
<section class="module-container">
@ -53,4 +53,4 @@
</section>
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
<section class="module-container">
@ -49,4 +49,4 @@
</section>
@endsection
@endsection

View file

@ -1,4 +1,4 @@
@extends('app')
@extends('layouts.app')
@section('content')
@include('partials.search')
@ -22,4 +22,4 @@
@endif
@endsection
@endsection