16 lines
391 B
PHP
16 lines
391 B
PHP
|
@props(['width' => 'w-auto', 'height' => 'h-auto'])
|
||
|
|
||
|
<div class="{{ $width }} {{ $height }}">
|
||
|
<x-base.chart
|
||
|
class="simple-line-chart"
|
||
|
{{ $attributes->merge($attributes->whereDoesntStartWith('class')->getAttributes()) }}
|
||
|
>
|
||
|
</x-base.chart>
|
||
|
</div>
|
||
|
|
||
|
@once
|
||
|
@push('scripts')
|
||
|
@vite('resources/js/components/simple-line-chart/index.js')
|
||
|
@endpush
|
||
|
@endonce
|