-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #395 from liberu-accounting/sweep/Add-Filament-Res…
…ource-Pages-for-Various-Accounting-Entities Add Filament Resource Pages for Various Accounting Entities
- Loading branch information
Showing
18 changed files
with
330 additions
and
0 deletions.
There are no files selected for viewing
13 changes: 13 additions & 0 deletions
13
app/Filament/App/Resources/PurchaseOrderResource/Pages/CreatePurchaseOrder.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\PurchaseOrderResource\Pages; | ||
|
||
use App\Filament\App\Resources\PurchaseOrderResource; | ||
use Filament\Resources\Pages\CreateRecord; | ||
|
||
class CreatePurchaseOrder extends CreateRecord | ||
{ | ||
protected static string $resource = PurchaseOrderResource::class; | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/PurchaseOrderResource/Pages/EditPurchaseOrder.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\PurchaseOrderResource\Pages; | ||
|
||
use App\Filament\App\Resources\PurchaseOrderResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\EditRecord; | ||
|
||
class EditPurchaseOrder extends EditRecord | ||
{ | ||
protected static string $resource = PurchaseOrderResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\DeleteAction::make(), | ||
]; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/PurchaseOrderResource/Pages/ListPurchaseOrders.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\PurchaseOrderResource\Pages; | ||
|
||
use App\Filament\App\Resources\PurchaseOrderResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\ListRecords; | ||
|
||
class ListPurchaseOrders extends ListRecords | ||
{ | ||
protected static string $resource = PurchaseOrderResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\CreateAction::make(), | ||
]; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
app/Filament/App/Resources/ReminderSettingResource/Pages/CreateReminderSetting.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\ReminderSettingResource\Pages; | ||
|
||
use App\Filament\App\Resources\ReminderSettingResource; | ||
use Filament\Resources\Pages\CreateRecord; | ||
|
||
class CreateReminderSetting extends CreateRecord | ||
{ | ||
protected static string $resource = ReminderSettingResource::class; | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/ReminderSettingResource/Pages/EditReminderSetting.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\ReminderSettingResource\Pages; | ||
|
||
use App\Filament\App\Resources\ReminderSettingResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\EditRecord; | ||
|
||
class EditReminderSetting extends EditRecord | ||
{ | ||
protected static string $resource = ReminderSettingResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\DeleteAction::make(), | ||
]; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/ReminderSettingResource/Pages/ListReminderSettings.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\ReminderSettingResource\Pages; | ||
|
||
use App\Filament\App\Resources\ReminderSettingResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\ListRecords; | ||
|
||
class ListReminderSettings extends ListRecords | ||
{ | ||
protected static string $resource = ReminderSettingResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\CreateAction::make(), | ||
]; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
app/Filament/App/Resources/TaxFormResource/Pages/CreateTaxForm.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxFormResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxFormResource; | ||
use Filament\Resources\Pages\CreateRecord; | ||
|
||
class CreateTaxForm extends CreateRecord | ||
{ | ||
protected static string $resource = TaxFormResource::class; | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TaxFormResource/Pages/EditTaxForm.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxFormResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxFormResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\EditRecord; | ||
|
||
class EditTaxForm extends EditRecord | ||
{ | ||
protected static string $resource = TaxFormResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\DeleteAction::make(), | ||
]; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TaxFormResource/Pages/ListTaxForms.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxFormResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxFormResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\ListRecords; | ||
|
||
class ListTaxForms extends ListRecords | ||
{ | ||
protected static string $resource = TaxFormResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\CreateAction::make(), | ||
]; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
app/Filament/App/Resources/TaxRateResource/Pages/CreateTaxRate.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxRateResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxRateResource; | ||
use Filament\Resources\Pages\CreateRecord; | ||
|
||
class CreateTaxRate extends CreateRecord | ||
{ | ||
protected static string $resource = TaxRateResource::class; | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TaxRateResource/Pages/EditTaxRate.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxRateResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxRateResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\EditRecord; | ||
|
||
class EditTaxRate extends EditRecord | ||
{ | ||
protected static string $resource = TaxRateResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\DeleteAction::make(), | ||
]; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TaxRateResource/Pages/ListTaxRates.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TaxRateResource\Pages; | ||
|
||
use App\Filament\App\Resources\TaxRateResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\ListRecords; | ||
|
||
class ListTaxRates extends ListRecords | ||
{ | ||
protected static string $resource = TaxRateResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\CreateAction::make(), | ||
]; | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
app/Filament/App/Resources/TimeEntryResource/Pages/CreateTimeEntry.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TimeEntryResource\Pages; | ||
|
||
use App\Filament\App\Resources\TimeEntryResource; | ||
use Filament\Resources\Pages\CreateRecord; | ||
|
||
class CreateTimeEntry extends CreateRecord | ||
{ | ||
protected static string $resource = TimeEntryResource::class; | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TimeEntryResource/Pages/EditTimeEntry.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TimeEntryResource\Pages; | ||
|
||
use App\Filament\App\Resources\TimeEntryResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\EditRecord; | ||
|
||
class EditTimeEntry extends EditRecord | ||
{ | ||
protected static string $resource = TimeEntryResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\DeleteAction::make(), | ||
]; | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
app/Filament/App/Resources/TimeEntryResource/Pages/ListTimeEntries.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
|
||
<?php | ||
|
||
namespace App\Filament\App\Resources\TimeEntryResource\Pages; | ||
|
||
use App\Filament\App\Resources\TimeEntryResource; | ||
use Filament\Actions; | ||
use Filament\Resources\Pages\ListRecords; | ||
|
||
class ListTimeEntries extends ListRecords | ||
{ | ||
protected static string $resource = TimeEntryResource::class; | ||
|
||
protected function getHeaderActions(): array | ||
{ | ||
return [ | ||
Actions\CreateAction::make(), | ||
]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters