re1naldo

Results 6 issues of re1naldo

From header doesn't change when it is set using `from` method: ``` $mail = new Mail; $mail->using('token.json'); $mail->from($senderEmail, $senderName); $mail->to($userEmail, $userName); ``` I also tried to use `setHeader`, but it...

I tried to scrape data from https://www.nhpassist.com/products using the following code: ``` $client = new Client(); $crawler = $client->request('GET', https://www.nhpassist.com/products'); return $crawler->filter('h3 > a')->each(function ($node) { $elements[] = $node->text(); return...

Is there any plan to upgrade select2 to the latest version?

enhancement
help wanted

Is it possible to have an Editable textarea with additional ajax link (for generating textarea content)? So if I open the Editable, there will be a textarea and link. This...

enhancement
help wanted

I want to add a button for deleting data on Customer (and Invoice) grid by adding `remove()` method in `DataViewer.vue` first: ``` methods: { ... remove(id) { if (confirm('Are you...

Is it possible to sort grid by column from different table? For example, I would like to sort grid by customer name on Invoice page: ``` export default { name:...