Questions tagged as 'laravel'

2
answers

Implementation AngularJS consuming data provided by Laravel using CORS

I'm trying to create a web service in Laravel 4, which will be consumed by a mobile application using AngularJS. When I make AJAX requests with AngularJS, it gives Cross Domain error because it is in another domain. How to solve?     
asked by 16.12.2013 / 12:07
1
answer

Laravel - Belongs

I am doing a support system for courses and I am using the belongs for relationship, at the time of issuing the registration of students is not registering in the class and does not issue any error. Codes Model <?php namespace Ap...
asked by 22.10.2018 / 22:54
1
answer

Creating Foreign Keys by Migration - Laravel

I'm having trouble when I try to create foreign keys for Migration in Laravel. Look at my Migration !!! <?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; class CreateEmpresaUsuarioTable exten...
asked by 22.06.2014 / 02:37
1
answer

Help with grandfather, father and grandson relationships in laravel

I am learning and enjoying using laravel, but I have some doubts about relationships and how to get the result I want. I have the tables: TB_FORMULARIO - ID_FORMULARIO - NO_FORMULARIO TB_CAMPO - ID_CAMPO - ID_FORMULARIO_FK - NO_CAMPO...
asked by 11.06.2018 / 20:04
1
answer

Laravel - default route

Hello, I'm new to Laravel and I was wondering if you can leave a default route in case someone misses the typed route, the return is from the return page.     
asked by 08.10.2018 / 16:40
2
answers

How do I retrieve and calculate 2 numbers via POST on the Controller in Laravel?

I'm a beginner in language and I'm trying to learn by myself, I created a .blade.php file in order to fill two simple fields and return the calculation via submit, after that I want to list a history stored in the SQL database, but I barely know...
asked by 11.10.2018 / 16:12
1
answer

Data truncated for column vlrDesconto Laravel

I am trying to save field with formatting by jqueryMaskMoney , but this is giving truncated data error $("#desconto01").maskMoney({thousands: ".", decimal: ","}); Error:    CONTROLLERpublicfunctionstore(Request$request){//try{/...
asked by 14.11.2018 / 12:44
1
answer

Calculate age in laravel [duplicate]

I want to calculate the age by the date of birth, I will leave the processing in the bank, I am new to Laravel and I am not able to execute the following query: SELECT YEAR(FROM_DAYS(TO_DAYS(NOW())-TO_DAYS(dataNascimento))) AS idade FROM pes...
asked by 07.04.2018 / 07:33
1
answer

Send data via post

I have the following method namespace App\Http\Controllers; use Illuminate\Http\Request; use Validator; use App\Pessoa; class PessoaController extends Controller { public function lista( Request $request ){...
asked by 08.04.2018 / 00:43
1
answer

What approach should be used in resource type controllers to list and fetch items?

I've created the ArticleController controller of type resource , so I have verbs and standard routes . I use the index method of my controller to list all (paginated) articles: $artigos = Artigo::orderBy('edicao', 'desc')->paginate(25...
asked by 08.03.2018 / 01:58