Posts by L.B.O • 119 points
11 posts
-
0
votes1
answer68
viewsQ: Bulk Data Insertion | Spservices | Sharepoint
I have a list with approximately 1000 records (names of people). I also have another list (scheduling). What I need is to create a dynamic schedule for each person on the list, that is, the user…
sharepointasked L.B.O 119 -
0
votes0
answers630
viewsQ: File problem after upload, in Laravel 5.4
I have the following code to upload files to my Laravel application. upload. <div class="form-group"> <label for="name" class="col-sm-3 control-label">Documento *:</label> <div…
-
1
votes1
answer455
viewsQ: Consultation in Related Tables | Laravel 5.4
I have the following relationship in a test system that I’m doing. :: MODEL EMPLOYEE public function users(){ return $this->hasMany('lbo\User'); } :: MODEL USER public function employees(){…
-
2
votes1
answer475
viewsQ: Advanced search in Laravel 5
I’m starting to Laravel 5 and as an apprenticeship I am creating a simple employee registration. What I need is to recover from the bank a relationship of employees with exams based on search…
-
0
votes0
answers150
viewsQ: Group By | Relationship Many To Many Laravel 5
I am developing an application in Laravel 5 where I have the tables employees, companies, exams, employee_exams and their respective fields according to Migration below: :: Companies Table public…
-
1
votes1
answer439
viewsA: Validate Laravel email | Distinct Tables
I solved my problem by making a small adjustment in the code as below: 'email' => 'required|unique:companies, email', 'email' => 'required|unique:users, email', I passed the column of the…
-
1
votes1
answer439
viewsQ: Validate Laravel email | Distinct Tables
I have a question regarding the unique field validation in the Laravel. I have two tables with no relationships (users and companies), both have a column email. I need to validate the field email…
-
1
votes1
answer598
viewsQ: Write Hmtl Table data to Database | Laravel 5.1
I have a question regarding recovering the information from an html table and saving it in the database using Windows. This part of the application consists of storing in a table user_exame…
-
1
votes1
answer660
viewsQ: Save Relationships in Bank - Laravel 5.2
What is the correct way to save related data in Laravel 5.2? I have a small application where I need to register data of a company and its address. When trying to save the data I get the error:…
-
1
votes2
answers851
viewsA: Combo Cities with Laravel 5.2
I added an Alert on the return of the $.get function as per. Code below: < script type = "text/javascript" > $('select[name=estado]').change(function() { var idEstado = $(this).val();…
-
3
votes2
answers851
viewsQ: Combo Cities with Laravel 5.2
I’m starting my studies on Laravel. My project is a simple customer registration where I would like to do a combo of States with Cities. Follow codes: MODEL STATES <?php namespace SGW; use…