forked from akaunting/akaunting
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge Invoice and Bill into Document
- Loading branch information
1 parent
830cc05
commit 0c1424d
Showing
436 changed files
with
31,660 additions
and
37,355 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -95,4 +95,5 @@ _ide_helper_models.php | |
modules/* | ||
!modules/OfflinePayments | ||
!modules/PaypalStandard | ||
!modules/BC21 | ||
.laravelstatsrc |
This file was deleted.
Oops, something went wrong.
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
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
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,34 @@ | ||
<?php | ||
|
||
namespace App\Abstracts\View\Components; | ||
|
||
use Illuminate\View\Component; | ||
use Illuminate\Support\Str; | ||
|
||
abstract class DocumentForm extends Component | ||
{ | ||
public $type; | ||
|
||
public $documents; | ||
|
||
public $bulkActions; | ||
|
||
/** @var bool */ | ||
public $hideBulkAction; | ||
|
||
/** | ||
* Create a new component instance. | ||
* | ||
* @return void | ||
*/ | ||
public function __construct( | ||
$type, $documents = [], $bulkActions = [], | ||
bool $hideBulkAction = false | ||
) { | ||
$this->type = $type; | ||
$this->documents = $documents; | ||
|
||
$this->bulkActions = $bulkActions; | ||
$this->hideBulkAction = $hideBulkAction; | ||
} | ||
} |
Oops, something went wrong.