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:
parent
0203440b06
commit
30554fbdf5
12 changed files with 22 additions and 22 deletions
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -9,4 +9,4 @@
|
|||
@endsection
|
||||
@section('scripts')
|
||||
@include('items.scripts')
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -9,4 +9,4 @@
|
|||
@endsection
|
||||
@section('scripts')
|
||||
@include('items.scripts')
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<section class="module-container">
|
||||
|
@ -53,4 +53,4 @@
|
|||
</section>
|
||||
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<section class="module-container">
|
||||
|
@ -49,4 +49,4 @@
|
|||
</section>
|
||||
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -6,4 +6,4 @@
|
|||
@include('settings.form')
|
||||
{!! Form::close() !!}
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -49,4 +49,4 @@
|
|||
</section>
|
||||
@endforeach
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -9,4 +9,4 @@
|
|||
@endsection
|
||||
@section('scripts')
|
||||
@include('tags.scripts')
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
|
||||
|
@ -9,4 +9,4 @@
|
|||
@endsection
|
||||
@section('scripts')
|
||||
@include('tags.scripts')
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<section class="module-container">
|
||||
|
@ -53,4 +53,4 @@
|
|||
</section>
|
||||
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<section class="module-container">
|
||||
|
@ -49,4 +49,4 @@
|
|||
</section>
|
||||
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
@extends('app')
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
@include('partials.search')
|
||||
|
@ -22,4 +22,4 @@
|
|||
@endif
|
||||
|
||||
|
||||
@endsection
|
||||
@endsection
|
||||
|
|
Loading…
Add table
Reference in a new issue