Questions tagged as 'laravel'

2
answers

An application for several clients with Laravel [closed]

I'm creating a project for a web application for multiple clients using Laravel . In my project this application would have several databases, one for each client. Searching the internet, I saw that over time it would be complicated to maintain...
asked by 08.12.2015 / 14:36
2
answers

How to upload and configure a project with Laravel on the server

I'm starting with Laravel 5.3 and learning how to explore all of its features. But I have a question. How would my project look on the server (in production). Today my projects are inside a folder with the index.php file in the root. What woul...
asked by 28.07.2017 / 16:17
4
answers

Input type datetime error

Good afternoon, I have a problem that I can not solve, I wanted to change the format of my form to "datetime", but when I test in my browser it appears as if it were text. <div class="form-group"> <label>Data de requisicao</...
asked by 30.01.2018 / 18:49
2
answers

Error in Laravel 5.0

I have a connection problem in Laravel when executing a query: PDOException in Connector.php line 47: SQLSTATE[HY000] [1045] Access denied for user 'homestead'@'localhost' (using password: YES) File database.php: 'mysql' => [ 'dr...
asked by 10.01.2018 / 14:05
2
answers

List Tree Categories in Laravel 5.1

I'm starting with Laravel 5.1 and I'm a bit lost yet. I need to list categories, subcategories and "sub-subcategories". Table: Categorias ------------------------ id | int nome | varchar categoria_pai | int Data:...
asked by 11.08.2015 / 19:53
3
answers

Routes accessible only to users logged in to Laravel?

Can anyone give me a hint on how to create routes that can be accessed only by users who are authenticated using Laravel ? For example , routes that relate to sharing, editing, deleting, and viewing publications are accessible only to...
asked by 24.08.2017 / 23:41
2
answers

Laravel - Use OR within where

I am using the ->cont command to count the return number, and for this I put a condition using ->WHERE , but when I try to put a || in the condition it will look for the answer. p> code I'm using: $numrow1=DB::table...
asked by 12.07.2018 / 15:34
1
answer

Laravel on the server Locaweb: Unexpected character in input: '\' (ASCII = 92) state = 1

I'm hosting at Locaweb and it's giving this error.    Warning: Unexpected character in input: '\' (ASCII = 92) state = 1 in   /home/storage/a/b7/b3/reciclaoleovegetal/public_html/public/index.php   online 52       Parse error: syntax...
asked by 25.09.2017 / 15:44
2
answers

Error installing JWT / Laravel

I'm trying to install JWTAuth in my project. I updated my composer.json as per the documentation: composer.json: "require": { "tymon/jwt-auth": "0.5.*" } I ran the composer update command and had the following error: Prob...
asked by 04.11.2016 / 14:09
2
answers

Group items by month and count them laravel

I need to group and count all items by mês . I use Laravel 5.2 , I tried to do this: $mes = date('m'); $vendas = Encomenda::where('FlgStEncomenda', 'O') ->group("MONTH(created_at)={$mes}") ->count(); I ne...
asked by 23.11.2016 / 18:56