22 lines
368 B
PHP
22 lines
368 B
PHP
@extends('adminlte::layouts.app')
|
|
|
|
@section('htmlheader_title')
|
|
Product
|
|
@endsection
|
|
@section('page_title')
|
|
Product
|
|
@endsection
|
|
|
|
@section('contentheader_title')
|
|
Product
|
|
@endsection
|
|
@section('contentheader_description')
|
|
@endsection
|
|
|
|
@section('main-content')
|
|
<div class="row">
|
|
<div class="col-12">
|
|
@include('product.widget.selector')
|
|
</div>
|
|
</div>
|
|
@endsection |