25 lines
838 B
PHP
25 lines
838 B
PHP
@extends('vuexy-admin::layouts.vuexy.layoutMaster')
|
|
|
|
@section('title', 'Asignaciones de Activos')
|
|
|
|
<!-- 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('asset-aassignments-index')
|
|
@endsection
|