akaunting 3.0 (the last dance)

This commit is contained in:
Burak Civan
2022-06-01 10:15:55 +03:00
parent cead09f6d4
commit d9c0764572
3812 changed files with 126831 additions and 102949 deletions

View File

@ -2,7 +2,7 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Attachment extends Component
{

View File

@ -2,9 +2,9 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Header extends Component
class Buttons extends Component
{
/**
* Get the view / contents that represent the component.
@ -13,6 +13,6 @@ class Header extends Component
*/
public function render()
{
return view('components.transactions.show.header');
return view('components.transactions.show.buttons');
}
}

View File

@ -2,9 +2,9 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Histories extends Component
class Children extends Component
{
/**
* Get the view / contents that represent the component.
@ -13,6 +13,6 @@ class Histories extends Component
*/
public function render()
{
return view('components.transactions.show.histories');
return view('components.transactions.show.children');
}
}

View File

@ -2,7 +2,7 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Content extends Component
{

View File

@ -2,9 +2,9 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Footer extends Component
class Create extends Component
{
/**
* Get the view / contents that represent the component.
@ -13,6 +13,6 @@ class Footer extends Component
*/
public function render()
{
return view('components.transactions.show.footer');
return view('components.transactions.show.create');
}
}

View File

@ -0,0 +1,18 @@
<?php
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\Transactions\Show as Component;
class MoreButtons extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.transactions.show.more-buttons');
}
}

View File

@ -1,18 +0,0 @@
<?php
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
class RecurringMessage extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.transactions.show.recurring-message');
}
}

View File

@ -2,9 +2,9 @@
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
use App\Abstracts\View\Components\Transactions\Show as Component;
class TopButtons extends Component
class Schedule extends Component
{
/**
* Get the view / contents that represent the component.
@ -13,6 +13,6 @@ class TopButtons extends Component
*/
public function render()
{
return view('components.transactions.show.top-buttons');
return view('components.transactions.show.schedule');
}
}

View File

@ -0,0 +1,18 @@
<?php
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\Transactions\Show as Component;
class Template extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.transactions.show.template');
}
}

View File

@ -1,18 +0,0 @@
<?php
namespace App\View\Components\Transactions\Show;
use App\Abstracts\View\Components\TransactionShow as Component;
class Transaction extends Component
{
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|string
*/
public function render()
{
return view('components.transactions.show.transaction');
}
}