22 lines
399 B
PHP
22 lines
399 B
PHP
<?php
|
|
|
|
namespace App\Features\Vault\ManageVault\ViewHelpers;
|
|
|
|
class VaultCreateViewHelper
|
|
{
|
|
/**
|
|
* Get all the data needed for the page.
|
|
*
|
|
* @return array
|
|
*/
|
|
public static function data(): array
|
|
{
|
|
return [
|
|
'url' => [
|
|
'store' => route('vault.store'),
|
|
'back' => route('vault.index'),
|
|
],
|
|
];
|
|
}
|
|
}
|