Invoice and php excell working

This commit is contained in:
2024-11-09 23:16:09 +05:00
parent a566b7ac61
commit 7ae9123eca
16 changed files with 561 additions and 2 deletions

BIN
app/Modules/PHPExcell/.DS_Store vendored Normal file

Binary file not shown.

View File

@@ -0,0 +1,48 @@
<?php
namespace App\Modules\PHPExcell;
use App\Modules\Makeable;
use App\Modules\ModuleContract;
class PHPExcellModule implements ModuleContract
{
use Makeable;
/**
* Module is enabled
*/
protected bool $enabled = true;
/**
* Check if is module enabled
*/
public function isEnabled(): bool
{
return $this->enabled;
}
/**
* Disable module
*/
public function disable(): void
{
$this->enabled = false;
}
/**
* Enable module
*/
public function enable(): void
{
$this->enabled = true;
}
/**
* Check if module has a filament resource
*/
public function hasFilamentResource(): bool
{
return true;
}
}