Files
investbrain/resources/views/livewire/portfolio/create.blade.php
T

20 lines
343 B
PHP
Raw Normal View History

2024-08-01 20:44:41 -05:00
<?php
use App\Models\Portfolio;
use Livewire\Attributes\{Title, Rule};
use Livewire\Volt\Component;
new class extends Component {
2024-08-01 13:53:10 -05:00
2024-08-01 20:44:41 -05:00
public bool $showDrawer2 = false;
public ?Portfolio $portfolio;
}; ?>
<div>
2024-08-03 23:52:53 -05:00
<x-ib-toolbar title="Create Portfolio" />
2024-08-01 20:44:41 -05:00
<livewire:portfolio.manage-portfolio-form submit="save" />
</div>