2024-08-01 13:53:10 -05:00
|
|
|
<?php
|
|
|
|
|
|
2025-01-28 17:33:54 -06:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2024-08-01 13:53:10 -05:00
|
|
|
namespace App\Providers;
|
|
|
|
|
|
|
|
|
|
use Livewire\Volt\Volt;
|
2025-09-26 17:41:28 -05:00
|
|
|
use Illuminate\Support\ServiceProvider;
|
2024-08-01 13:53:10 -05:00
|
|
|
|
|
|
|
|
class VoltServiceProvider extends ServiceProvider
|
|
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* Register services.
|
|
|
|
|
*/
|
|
|
|
|
public function register(): void
|
|
|
|
|
{
|
|
|
|
|
//
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Bootstrap services.
|
|
|
|
|
*/
|
|
|
|
|
public function boot(): void
|
2025-09-26 17:41:28 -05:00
|
|
|
{
|
2024-08-01 13:53:10 -05:00
|
|
|
Volt::mount([
|
2025-04-09 19:25:15 -05:00
|
|
|
// config('livewire.view_path', resource_path('views/livewire')),
|
|
|
|
|
resource_path('views/components'),
|
|
|
|
|
resource_path('views/profile'),
|
2025-09-26 17:41:28 -05:00
|
|
|
resource_path('views/api'),
|
2025-04-09 19:25:15 -05:00
|
|
|
resource_path('views/holding'),
|
|
|
|
|
resource_path('views/transaction'),
|
|
|
|
|
resource_path('views/portfolio'),
|
2025-09-26 17:41:28 -05:00
|
|
|
resource_path('views/import-export'),
|
2025-04-09 19:25:15 -05:00
|
|
|
resource_path('views/auth'),
|
2024-08-01 13:53:10 -05:00
|
|
|
]);
|
|
|
|
|
}
|
|
|
|
|
}
|