Jerome V
Cannot store select options data in another table
Good day, in some modules it's working... but in this module is not working,, I want to add gender of the user but the userDetails is separate from users table
code
Resource
user model
UserDetail
4 replies
Custom JS is not working in custom view page in RelationshipManager
So the case is this
1. We use video js using CDN
What I did
on my adminPanelProvider I register the CDN
and on the custom view for (EpisodesRelationManger) infolist, I want to include the custom scripts
This the custom view video.blade.php (The below scripts is not seen in devtools elements)
1 replies
How to register CDN in Laravel-Filament?
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/video.min.js"></script>
<script src="https://cdn.tailwindcss.com"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/video-js.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/videojs-contrib-eme.min.js"></script>
I tried to include it in app.blade.php but when I check it in dev tools elements it's not there
8 replies
How to add table inside the tab content?
I have a task to create a view page on users. The scope is every tab content is different page/component so that it will not load heavily..
All the tabs are tables content
example.. in my UserResource I created infolist for tab
How to attached/make users table in the user tab? I want to test this first and follow other tabs
1. by inserting directy the table? or
2. make a livewire component then render ?
9 replies