22 lines
682 B
PHP
22 lines
682 B
PHP
|
@extends('vuexy-admin::layouts.vuexy.layoutMaster')
|
||
|
|
||
|
@section('title', 'Recepción de productos')
|
||
|
|
||
|
@section('vendor-style')
|
||
|
@vite([
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/bootstrap-table/bootstrap-table.scss',
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/fonts/bootstrap-icons.scss',
|
||
|
])
|
||
|
@endsection
|
||
|
|
||
|
@push('page-script')
|
||
|
@vite([
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/js/bootstrap-table/bootstrapTableManager.js',
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/js/forms/formConvasHelper.js',
|
||
|
])
|
||
|
@endpush
|
||
|
|
||
|
@section('content')
|
||
|
@livewire('product-receipts-index')
|
||
|
@endsection
|