Posts by Sotnas Leunam Pina • 93 points
4 posts
-
1
votes1
answer265
viewsA: Display options with multiple select and mark the options chosen in Laravel
easy: 1. exchange the parts: $paymentMethods = PaymentMethod::all(); $paymentMethodsOrder = $order->paymentMethods->map(function ($item, $key) { return $item['id']; })->toArray(); for:…
-
1
votes1
answer250
viewsQ: Forwarding from other domains (http/https) to main (https)
Fala galera! I have a question about https redirect. I have a ". com" domain (SSL installed), but ".com.br" doesn’t have SSL, I just redirect it to ". com" with SSL, until then blz, but, if I try to…
-
3
votes1
answer244
viewsA: Laravel: Upload linked images and files
Note: change paths according to your installation. It goes in your file hosts in: C:\Windows\System32\drivers\etc And add new line: 127.0.0.1 naslojas.dev then it goes in your file httpd-vhosts.conf…
-
1
votes1
answer1335
viewsA: View in select database attributes and edit with Laravel
Do the following: the Blade select: {{ Form::select('atributos[]', $attributes, $property->attribute->lists('chave estrangeira de atributos na tabela pivot'), ['multiple' => 'multiple',…