janmoes96

Results 7 issues of janmoes96

Hey there, i'm using your package to translate my routes. I figured out that i can even easily translate a resource route by doing ``` Route::resource(LaravelLocalization::transRoute('routes.posts') , 'PostController'); ``` But...

I'm not sure if it's in your package, but is it possible to have language flag icons to change languages instead of text?

Hi there, ` \PhpOffice\PhpWord\Settings::setPdfRendererPath('src/Controller/PhpWord/lib/dompdf/autoload.inc.php'); \PhpOffice\PhpWord\Settings::setPdfRendererName('DomPDF'); $phpWord = \PhpOffice\PhpWord\IOFactory::load($url, 'Word2007'); $dirname = pathinfo($url, PATHINFO_DIRNAME); $filename = time().'.pdf'; $xmlWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord , 'PDF'); $test = $xmlWriter->save($dirname.'/'.$filename); var_dump($test);` I have this code that...

WontFix
Stale

Hi there, I've used your validation class a couple of times because it works really well, even with some custom methods of my own. I normally start by doing `$val->name('fname')->value(htmlspecialchars($_REQUEST['fname']))->required();`....

Hi there, I've started using your class since today. for some reason I'm getting this error multiple times on the page `Warning: preg_match(): Compilation failed: invalid range in character class...

Hi I'm using your package in combination with laravel. ```php public function createCard(User $user){ // var_dump($user); // die(); $vcard = new VCard(); $vcard->add(new Name($user->l_name, $user->name, '', '', '')) ->add(new Telephone($user->phone,...

Hi I created a generic pass in my google wallet dashboard. I also installed your package, and created a class to generate a card. I used the right credentials, like...