2023-07-11 14:42:57 +02:00
|
|
|
@extends('layout.v4.default')
|
2023-07-12 07:07:06 +02:00
|
|
|
@section('vite')
|
|
|
|
@vite(['resources/assets/v4/index.js'])
|
|
|
|
@endsection
|
2023-07-11 14:42:57 +02:00
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="app-content">
|
|
|
|
<!--begin::Container-->
|
|
|
|
<div class="container-fluid">
|
|
|
|
Here be content.
|
|
|
|
|
|
|
|
<!-- /.row (main row) -->
|
|
|
|
<div x-data="{ count: 0 }">
|
|
|
|
<button x-on:click="count++">Increment</button>
|
|
|
|
|
|
|
|
<span x-text="count"></span>
|
2023-07-14 06:04:48 +02:00
|
|
|
<button x-on:click="app.changeDateRange">KLIK</button>
|
2023-07-11 14:42:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
Icon: <i class="fa-solid fa-user"></i><br>
|
|
|
|
<!-- uses solid style -->
|
|
|
|
Icon: <i class="fa-brands fa-github-square"></i>
|
|
|
|
<!--end::Container-->
|
|
|
|
</div>
|
|
|
|
|
|
|
|
@endsection
|