Uploading content

This commit is contained in:
David
2025-03-12 00:41:31 -04:00
parent b192e57eb5
commit f70ef52f9e
108 changed files with 13255 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
<div>
If you want to use this view overwrite the render method in PHP Livewire component
</div>

View File

@@ -0,0 +1,21 @@
<div>
<div class="card my-5">
<div class="card-header p-3">
<h4>Content</h4>
</div>
<div class="card-body">
<ul>
<li><a href="{{ route('table_no_settings') }}">Table with no settings needed</a></li>
<li><a href="{{ route('exportbale') }}">Exprtable</a></li>
<li><a href="{{ route('action_column') }}">Action Columns</a></li>
<li><a href="{{ route('with_filters') }}">Filters</a></li>
<li><a href="{{ route('with_column_formatters') }}">Formatters</a></li>
<li><a href="{{ route('with_binded_routes') }}">Binding Routes</a></li>
<li><a href="{{ route('with_pagination_settings') }}">Pagination Settings</a></li>
<li><a href="{{ route('with_drag_drop_ordering') }}">Drag and Drop Ordering</a></li>
<li><a href="{{ route('with_bulk_actions') }}">Bulk Actions</a></li>
<li><a href="{{ route('with_relationships') }}">Relationships</a></li>
</ul>
</div>
</div>
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($table)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($table)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($table)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@livewire('generic_table', ['table' => $table])
</div>

View File

@@ -0,0 +1,13 @@
<div class="container-fluid">
<div class="row">
<div class="col-auto">
<button wire:click = "$set('tab', 1)" class="w-100 btn btn-{{ $tab == 1 ? 'primary' : 'light' }}">Pendientes</button>
</div>
<div class="col-auto">
<button wire:click = "$set('tab', 2)" class="w-100 btn btn-{{ $tab == 2 ? 'primary' : 'light' }}">Pagados</button>
</div>
</div>
@generic_table($table, ['tabView' => $tab])
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($noSettingsTable)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($table)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@generic_table($table)
</div>

View File

@@ -0,0 +1,3 @@
<div>
@livewire('generic_table', ['table' => $table])
</div>