akaunting 3.0 (the last dance)
This commit is contained in:
@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\Show as Component;
|
||||
|
||||
class Attachment extends Component
|
||||
{
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\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.transfers.show.header');
|
||||
return view('components.transfers.show.buttons');
|
||||
}
|
||||
}
|
@ -2,7 +2,7 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\Show as Component;
|
||||
|
||||
class Content extends Component
|
||||
{
|
||||
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\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.transfers.show.footer');
|
||||
return view('components.transfers.show.create');
|
||||
}
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\Show as Component;
|
||||
|
||||
class TopButtons extends Component
|
||||
class MoreButtons extends Component
|
||||
{
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
@ -13,6 +13,6 @@ class TopButtons extends Component
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.transfers.show.top-buttons');
|
||||
return view('components.transfers.show.more-buttons');
|
||||
}
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
use App\Abstracts\View\Components\Transfers\Show as Component;
|
||||
|
||||
class Histories extends Component
|
||||
class Template extends Component
|
||||
{
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
@ -13,6 +13,6 @@ class Histories extends Component
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.transfers.show.histories');
|
||||
return view('components.transfers.show.template');
|
||||
}
|
||||
}
|
@ -1,18 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\View\Components\Transfers\Show;
|
||||
|
||||
use App\Abstracts\View\Components\TransferShow as Component;
|
||||
|
||||
class Transfer extends Component
|
||||
{
|
||||
/**
|
||||
* Get the view / contents that represent the component.
|
||||
*
|
||||
* @return \Illuminate\Contracts\View\View|string
|
||||
*/
|
||||
public function render()
|
||||
{
|
||||
return view('components.transfers.show.transfer');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user