Merge Invoice and Bill into Document
This commit is contained in:
35
app/View/Components/Documents/Form/Totals.php
Normal file
35
app/View/Components/Documents/Form/Totals.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Documents\Form;
|
||||
|
||||
use Illuminate\View\Component;
|
||||
use App\Models\Setting\Currency;
|
||||
|
||||
class Totals extends Component
|
||||
{
|
||||
/** @var string */
|
||||
public $type;
|
||||
|
||||
/**
|
||||
* Create a new component instance.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct($type)
|
||||
{
|
||||
$this->type = $type;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
$currencies = Currency::enabled()->pluck('name', 'code');
|
||||
$currency = Currency::where('code', setting('default.currency'))->first();
|
||||
|
||||
return view('components.documents.form.totals', compact('currencies', 'currency'));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user