Sdeev
Sdeev
Explore posts from servers
FFilament
Created by Sdeev on 3/26/2024 in #❓┊help
barryvdh/laravel-dompdf arabic support
3 replies
FFilament
Created by gigiloouu on 3/21/2024 in #❓┊help
Integrity constraint violation: 1451 Cannot delete or update a parent row: a foreign key constraint
you can use ondeletecascade on your migration or try to delete them using Observer or by adding the >actions() method to the deleteAction
9 replies
FFilament
Created by nowak on 3/21/2024 in #❓┊help
How to stack table row actions, show as flex-direction column instead of flex-direction row
try ActionGroup
17 replies
FFilament
Created by Sdeev on 3/20/2024 in #❓┊help
Style not loaded on Production
@Leandro Ferreira yes it works using ASSET_URL thank you
13 replies
FFilament
Created by Sdeev on 3/20/2024 in #❓┊help
Style not loaded on Production
No description
13 replies
FFilament
Created by Sdeev on 3/20/2024 in #❓┊help
Style not loaded on Production
13 replies
FFilament
Created by Sdeev on 3/20/2024 in #❓┊help
Style not loaded on Production
No description
13 replies
FFilament
Created by Sdeev on 3/13/2024 in #❓┊help
getLabel Not working on relationManager
No description
5 replies
FFilament
Created by Hdev on 1/26/2024 in #❓┊help
Arabic number translation
@Hdev did find any solution ?
11 replies
FFilament
Created by Sdeev on 2/23/2024 in #❓┊help
Info list calculation
No description
6 replies
FFilament
Created by Sdeev on 2/22/2024 in #❓┊help
Input default callback not working
No description
6 replies
FFilament
Created by Oi on 2/22/2024 in #❓┊help
how do I give a default value to a field using a closure that has access to the record
i try this to calculate the total but not wokring for me
6 replies
FFilament
Created by Sdeev on 2/22/2024 in #❓┊help
Input default callback not working
im using the table builder its a Repeater with a relationship orderproducts and for each row iwant to display a total = quantity * unite_price and save the total in the database (i get the total using placeholder but idont know how to make the total as the textinput default value ) @Tieme @Leandro Ferreira
6 replies
FFilament
Created by Sdeev on 2/19/2024 in #❓┊help
How to store the Total price
understood thank you so much ❤️
4 replies
FFilament
Created by jepewsykes on 1/6/2024 in #❓┊help
HOW TO USE DB TRANSACTION
class CreateSalesOrder extends CreateRecord { use HasWizard; protected static string $resource = SalesOrderResource::class; public function form(Form $form): Form { return parent::form($form) ->schema([ Wizard::make($this->getSteps()) ->startOnStep($this->getStartStep()) ->cancelAction($this->getCancelFormAction()) ->submitAction($this->getSubmitFormAction()) ->skippable($this->hasSkippableSteps()) ->contained(false), ]) ->columns(null); } /** @return Step[] */ protected function getSteps(): array { return [ Step::make('Order Details') ->schema([ Section::make()->schema(SalesOrderResource::getDetailsFormSchema())->columns(), ]), Step::make('Order Items') ->schema([ Section::make()->schema([ SalesOrderResource::getItemsRepeater(), ]), ]), ]; } how to use tha transaction on here ?
7 replies
FFilament
Created by jepewsykes on 1/6/2024 in #❓┊help
HOW TO USE DB TRANSACTION
did you find the solution of the transaction or a similar solution
7 replies