Skip to content

Commit

Permalink
fix: filament raffle,lottery and draws
Browse files Browse the repository at this point in the history
  • Loading branch information
alejandro-velasquez committed Nov 23, 2024
1 parent f7e006a commit 3dfef18
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Filament/Resources/DrawsResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
use Modules\Draws\Models\Draws as ModelsDraws;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\DateTimePicker;
use Filament\Forms\Components\TextArea;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\Select;
use Filament\Tables\Columns\TextColumn;
use Modules\Lottery\Models\Lottery;
Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Resources/LoteryResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Filament\Tables;
use Filament\Tables\Table;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\TextArea;
use Filament\Forms\Components\Textarea;
use Filament\Tables\Columns\TextColumn;
use Modules\Lottery\Models\Lottery;

Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Resources/Pages/CustomDashboard.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Filament\Pages;
namespace App\Filament\Resources\Pages;

use Filament\Pages\Dashboard;
use Filament\Actions\Action;
Expand Down
2 changes: 1 addition & 1 deletion app/Filament/Resources/RafflesResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Filament\Tables\Table;
use Filament\Forms\Components\Select;
use Filament\Forms\Components\TextInput;
use Filament\Forms\Components\TextArea;
use Filament\Forms\Components\Textarea;
use Filament\Forms\Components\DateTimePicker;
use Modules\Raffle\Models\Raffle;
use App\Models\User; // Asegúrate de importar el modelo User
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Request/UserRequest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Requests;
namespace App\Http\Request;

use Illuminate\Foundation\Http\FormRequest;

Expand Down
2 changes: 1 addition & 1 deletion app/Providers/Filament/AdminPanelProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace App\Providers\Filament;

use App\Filament\Pages\CustomDashboard;
use App\Filament\Resources\Pages\CustomDashboard;
use App\Http\Middleware\AdminPasswordVerification;
use Filament\Http\Middleware\Authenticate;
use Filament\Http\Middleware\DisableBladeIconComponents;
Expand Down

0 comments on commit 3dfef18

Please sign in to comment.