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

8
routes/console.php Normal file
View File

@@ -0,0 +1,8 @@
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');

35
routes/web.php Normal file
View File

@@ -0,0 +1,35 @@
<?php
use App\Livewire\Examples\FrameComponent;
use App\Livewire\Examples\MyCustomSettingsTableComponent;
use App\Livewire\Examples\TableWithActionColumnComponent;
use App\Livewire\Examples\TableWithBindedRoutesComponent;
use App\Livewire\Examples\TableWithBulkActionsComponent;
use App\Livewire\Examples\TableWithColumnFormatterComponent;
use App\Livewire\Examples\TableWithDragDropOrderingComponent;
use App\Livewire\Examples\TableWithExportComponent;
use App\Livewire\Examples\TableWithFiltersComponent;
use App\Livewire\Examples\TableWithNoSettingsComponent;
use App\Livewire\Examples\TableWithPaginationSettingsComponent;
use App\Livewire\Examples\TableWithRelationshipsComponent;
use App\Livewire\Test\ParentComponent;
use Illuminate\Support\Facades\Route;
Route::get('/', FrameComponent::class);
Route::get('/no_settings_table', TableWithNoSettingsComponent::class)->name('table_no_settings');
Route::get('/exportable_table', TableWithExportComponent::class)->name('exportbale');
Route::get('/action_column', TableWithActionColumnComponent::class)->name('action_column');
Route::get('/with_filters', TableWithFiltersComponent::class)->name('with_filters');
Route::get('/with_column_formatters', TableWithColumnFormatterComponent::class)->name('with_column_formatters');
Route::get('/with_binded_routes', TableWithBindedRoutesComponent::class)->name('with_binded_routes');
Route::get('/with_pagination_settings', TableWithPaginationSettingsComponent::class)->name('with_pagination_settings');
Route::get('/with_drag_drop_ordering', TableWithDragDropOrderingComponent::class)->name('with_drag_drop_ordering');
Route::get('/with_bulk_actions', TableWithBulkActionsComponent::class)->name('with_bulk_actions');
Route::get('/with_relationships', TableWithRelationshipsComponent::class)->name('with_relationships');
Route::get('test', ParentComponent::class);
Route::get('product/details/{id?}/{st?}', function($id, $st){
echo 'Hola ' . $id . ' ' . $st;
})->name('product_details');