Mehmet K.
Mehmet K.
FFilament
Created by Mehmet K. on 10/23/2024 in #❓┊help
Custom Modal form closes as soon as I click on it.
It's not detecting my js file right now. There is nothing I can share code, so I shared a video to show the problem.
11 replies
FFilament
Created by Mehmet K. on 10/23/2024 in #❓┊help
Custom Modal form closes as soon as I click on it.
In fact, when I add a button, it acts as an action and tries to save automatically. I don't want this, since there is a button in the tab, it acts as if the process is over and my mode closes.
11 replies
FFilament
Created by Mehmet K. on 10/21/2024 in #❓┊help
My Bulkaction buttons do not fit in the table, can we add scroll?
Can you describe exactly how to apply this css file?
12 replies
FFilament
Created by Mehmet K. on 10/21/2024 in #❓┊help
My Bulkaction buttons do not fit in the table, can we add scroll?
I don't use the group bulk actions
12 replies
FFilament
Created by Mehmet K. on 10/21/2024 in #❓┊help
My Bulkaction buttons do not fit in the table, can we add scroll?
Minimal
12 replies
FFilament
Created by Mehmet K. on 10/21/2024 in #❓┊help
My Bulkaction buttons do not fit in the table, can we add scroll?
Gruplamak değil aslında amacım ayrı ayrı görünmeleri gerekiyor da
12 replies
FFilament
Created by Mehmet K. on 10/17/2024 in #❓┊help
Can Bulkaction buttons remain visible without being selected?
How will the header actions work in multiple record selections? In a situation where I want to process more than one record
5 replies
FFilament
Created by Mehmet K. on 10/15/2024 in #❓┊help
How can I save data in custom modal?
I cannot use Repeater because the data is not coming in and I need to make a different design because it does not provide the freedom I want.
7 replies
FFilament
Created by Mehmet K. on 10/15/2024 in #❓┊help
How can I save data in custom modal?
No description
7 replies
FFilament
Created by Mehmet K. on 10/15/2024 in #❓┊help
How can I save data in custom modal?
->action(function (array $data, Post $record): void { $record->author()->associate($data['authorId']); $record->save(); }) I added it this way, but when I pressed send from the inputs I added, no data came out.
7 replies
FFilament
Created by Mehmet K. on 10/15/2024 in #❓┊help
Can we show a table in the tabs inside the modal form?
When I open a modal form directly, I actually want to show a table in it.
4 replies
FFilament
Created by Mehmet K. on 10/9/2024 in #❓┊help
Form Data is Not Saved When I Click the Print Button: How Do I Fix It?
array data is empty that's why is not working. My solution is
->action(function (Shipment $record, Forms\Get $get, Component $livewire) {
$customerNameSend = $get('sender_name');
$customerTitleSend = $get('note_title');
$customerNoteSend = $get('customer_note');

$params = [
'id' => $record->id,
'sender_name' => $customerNameSend,
'note_title' => $customerTitleSend,
'customer_note' => $customerNoteSend,
];
$url = url('print/generate') . '?' . http_build_query($params);

// JavaScript ile yeni sekmede aç
$livewire->js("window.open('$url', '_blank');");
->action(function (Shipment $record, Forms\Get $get, Component $livewire) {
$customerNameSend = $get('sender_name');
$customerTitleSend = $get('note_title');
$customerNoteSend = $get('customer_note');

$params = [
'id' => $record->id,
'sender_name' => $customerNameSend,
'note_title' => $customerTitleSend,
'customer_note' => $customerNoteSend,
];
$url = url('print/generate') . '?' . http_build_query($params);

// JavaScript ile yeni sekmede aç
$livewire->js("window.open('$url', '_blank');");
5 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
Adding a Default Action Modal Button Next to a Column in Filament Table
Thank you tooknee You helped me a lot today.
5 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
Can we change the titles of these columns in the table?
my English is a bit bad, in fact I couldn't find how to express it in my own language 😦
9 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
Can we change the titles of these columns in the table?
No description
9 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
Can we change the titles of these columns in the table?
Toogleable reoder is working
9 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
How do I do Print in Bulkaction?
thank you it's working
14 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
How do I do Print in Bulkaction?
As long as it's open, it doesn't matter.
14 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
How do I do Print in Bulkaction?
Tables\Actions\BulkAction::make('Export')
->icon('heroicon-m-arrow-down-tray')
->deselectRecordsAfterCompletion() ->url(fn($records) => 'pdf.generate?ids=' . $records->pluck('id')->implode(','))->openUrlInNewTab(),
Tables\Actions\BulkAction::make('Export')
->icon('heroicon-m-arrow-down-tray')
->deselectRecordsAfterCompletion() ->url(fn($records) => 'pdf.generate?ids=' . $records->pluck('id')->implode(','))->openUrlInNewTab(),
Call to a member function pluck() on null I don't think the records are coming in
14 replies
FFilament
Created by Mehmet K. on 10/8/2024 in #❓┊help
How do I do Print in Bulkaction?
In fact, when I click on the button for the records I have selected in the bulk action, I want to open a print page as if I pressed with ctrl p, but there will be records in it that I want.
14 replies