25 lines
822 B
PHP
25 lines
822 B
PHP
|
@extends('vuexy-admin::layouts.vuexy.layoutMaster')
|
||
|
|
||
|
@section('title', 'Activos registrados')
|
||
|
|
||
|
<!-- Vendor Styles -->
|
||
|
@section('vendor-style')
|
||
|
@vite([
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/select2/select2.scss',
|
||
|
])
|
||
|
@endsection
|
||
|
|
||
|
<!-- Vendor Scripts -->
|
||
|
@section('vendor-script')
|
||
|
@vite([
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/bootstrap-table/bootstrap-table.js',
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/js/components/datatables/btFormatter.js',
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/select2/select2.js',
|
||
|
'vendor/koneko/laravel-vuexy-admin/resources/assets/vendor/libs/jquery-validation/jquery.validate.js',
|
||
|
])
|
||
|
@endsection
|
||
|
|
||
|
@section('content')
|
||
|
@livewire('assets-index')
|
||
|
@endsection
|