@extends('store.layout.main')
@section('style')
@endsection
@section('title', 'Invoice Layouts')
@section('page-header')
@endsection
@section('main-container')
@forelse($layouts as $layout)
@if ($layout->is_default)
Default Layout
@endif
{{--
@if ($layout->is_active)
Active
@else
Inactive
@endif
--}}
@empty
No layouts found
@endforelse
@endsection
@section('script')
@endsection