Sourabh
Sourabh
FFilament
Created by Sourabh on 6/11/2024 in #❓┊help
Custom form field
No description
15 replies
FFilament
Created by Sourabh on 6/10/2024 in #❓┊help
Table custom filter validate
No description
4 replies
FFilament
Created by Sourabh on 6/7/2024 in #❓┊help
Table Layout
No description
3 replies
FFilament
Created by Sourabh on 5/17/2024 in #❓┊help
Table Custom Column Update.
I have created a custom column in a table and want to update all the fields of the custom column by clicking on update. custom column having input fields like checkboxes and dropdown . How do I get all the values of a single row while clicking on update? I have attached a template for your reference.
5 replies
FFilament
Created by Sourabh on 5/17/2024 in #❓┊help
Access Relationship Data in Table Layout Custom HTML
How to access relationship data in Table Layout: Custom HTML. I have products and I want to show their variants in the custom HTML. https://filamentphp.com/docs/3.x/tables/layout#custom-html
<?php
//Product Model
public function variants(): HasMany
{
return $this->hasMany(ProductVariant::class);
}
<?php
//Product Model
public function variants(): HasMany
{
return $this->hasMany(ProductVariant::class);
}
```<?php
// ProductResource.php
View::make('products.table.collapsible-row-content')
->collapsible(),
```<?php
// ProductResource.php
View::make('products.table.collapsible-row-content')
->collapsible(),
<?php
// I try below code in the blade file.
// resources/views/products/table/collapsible-row-content.blade.php
<p class="px-4 py-3 bg-gray-100 rounded-lg">
<span class="font-medium">
@foreach($getRecord()->variants() as $productVariant)
<p>{{$productVariant->description}}</p>
@endforeach
</span>
</p>
<?php
// I try below code in the blade file.
// resources/views/products/table/collapsible-row-content.blade.php
<p class="px-4 py-3 bg-gray-100 rounded-lg">
<span class="font-medium">
@foreach($getRecord()->variants() as $productVariant)
<p>{{$productVariant->description}}</p>
@endforeach
</span>
</p>
3 replies
FFilament
Created by Sourabh on 5/8/2024 in #❓┊help
Table row: expand/collapse
No description
4 replies
FFilament
Created by Sourabh on 5/6/2024 in #❓┊help
Dropdown in csv import
No description
2 replies
FFilament
Created by Sourabh on 5/2/2024 in #❓┊help
Tooltip on table column header
No description
6 replies
FFilament
Created by Sourabh on 4/9/2024 in #❓┊help
how to remove or hide column in csv import
No description
2 replies
FFilament
Created by Sourabh on 4/8/2024 in #❓┊help
Excel Import modal
No description
5 replies
FFilament
Created by Sourabh on 4/4/2024 in #❓┊help
Failed to import csv
No description
27 replies
FFilament
Created by Sourabh on 4/3/2024 in #❓┊help
File upload preview green gradient
No description
11 replies
FFilament
Created by Sourabh on 3/19/2024 in #❓┊help
Email verification template
No description
6 replies
FFilament
Created by Sourabh on 3/14/2024 in #❓┊help
Filament Resource Error
No description
3 replies
FFilament
Created by Sourabh on 2/27/2024 in #❓┊help
Email verification customisation.
No description
5 replies
FFilament
Created by Sourabh on 2/16/2024 in #❓┊help
Global Search Table Column
No description
8 replies
FFilament
Created by Sourabh on 2/2/2024 in #❓┊help
Deselect if bulk action cancel
No description
3 replies
FFilament
Created by Sourabh on 2/1/2024 in #❓┊help
Table Bulk Action
No description
3 replies
FFilament
Created by Sourabh on 2/1/2024 in #❓┊help
Filament V3 is running slowly on windows 10/11
My Filament v3 Project is running slowly on window 10/11 . Any one can help how do i resolve it ?
6 replies
FFilament
Created by Sourabh on 1/23/2024 in #❓┊help
Excel Export
How do I export excel without a heading? How do I apply the before and after events to an Excel export? kindly help for this . Thanks ,
5 replies