TsuLee

Results 3 comments of TsuLee

Hi, In App/Http/Livewire/Ticket/Attachments, you can edit the function getTableColumns() like this : ``` TextColumn::make('name') ->label(__('File')) ->sortable() ->searchable() ->url(function ($record) { $attachmentId = $record->id; $attachmentFile = $record->file_name; return asset('storage/' . $attachmentId...

The "Invalid Signature" error you're seeing when clicking the verification link in the email is typically related to a mismatch between the signature generated in the URL and the server's...

Try : ``` npm install npm run dev ``` This will start the Vite development server and should generate the required manifest.json file in the public/build/ directory. Ensure you have...