Skip to content

Commit

Permalink
Merge pull request #3 from konnco/fix/namespace
Browse files Browse the repository at this point in the history
fix namespace and add necessary package
  • Loading branch information
fadilAndrian committed Jun 7, 2023
2 parents e487a1c + 6b415fc commit 9ef5047
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
],
"require": {
"php": "^8.1",
"anourvalar/eloquent-serialize": "^1.2",
"filament/filament": "^2.17",
"filament/notifications": "^2.17",
"illuminate/contracts": "^10.0",
Expand Down Expand Up @@ -76,4 +77,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}
2 changes: 1 addition & 1 deletion src/Exports/Export.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace CraftCodex\Filament\Exports;
namespace Konnco\FilamentHelper\Exports;

use AnourValar\EloquentSerialize\Facades\EloquentSerializeFacade as EloquentSerialize;
use Illuminate\Contracts\Queue\ShouldQueue;
Expand Down
4 changes: 2 additions & 2 deletions src/Tables/Actions/Action/ExportAction.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php

namespace CraftCodex\Filament\Tables\Actions\Action;
namespace Konnco\FilamentHelper\Tables\Actions\Action;

use Closure;
use CraftCodex\Filament\Exports\Export;
use Filament\Forms\Components\TextInput;
use Filament\Notifications\Notification;
use Filament\Tables\Actions\Action;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Support\Facades\Storage;
use Konnco\FilamentHelper\Exports\Export;

class ExportAction extends Action
{
Expand Down

0 comments on commit 9ef5047

Please sign in to comment.