I uninstalled and reinstalled a newer version of Vertrigo Server to get PHP 7, but when I try to do something with Laravel or Composer in CMD a message appears saying: "The program can not be started because php5ts.dll is missing in your compute...
My question is this: I want to organize my json so that I can see the Animal and Farm table, but organized, for example:
{
"animais": {
"id": 1,
"nome": "Mimosa",
"data_nascimento": "2017-04-11 00:00:00",
"codigo_bri...
Well, I have a table that returns 5 users, and among those 5 there can be equal teamIDs, for example:
usuario1 = teamid: 51
usuario2 = teamid: 51
usuario3 = teamid: 55
usuario4 = teamid: 55
usuario5 = teamid: null
I would like to know how I...
A part of my application, I need to use Sendgrid to send dirty emails (marketing / welcome / forgot password etc ...) and another part of my application I need to use Mailchimp in case mailchimp is working but how can I change a key and change d...
Internally everyone is working, migrations , tinker , sqlite3 , but in the server application it always queries mysql instead of sqlite for all operations, ie it is using Connector.php instead of% with%...
When I access a project that does not use laravel, it works normally, but when it does not load anything, it shows nothing and shows an empty screen. Does his configuration have to be different from the others?
My virtual host looks like this...
I'm having this problem in hosting a laravel site. In the site the site works normally, only in the lodging that this problem appears.
I've done the following several times:
- > php artisan key: generate
- > php artisan config: cl...
I'm following the documentation to upload files to the storage folder, but the path the function returns is not the same path as the file was stored in, look in the documentation :
$path = $request->photo->store('images');...
I want to send array of objects to my controller PHP and I have done it this way
$http({
method: 'POST',
url: "payment/pagamento",
data: $.param(vm.listProdsCar),
headers: {'Content-Type': 'application/x-www-form-...
I have a view database that has a several dropdowns that depend on database values, naming it as "base.blade.php".
I also have several other views that extend from this base, such as depoimentos.blade.php , contato.blade.php ,...