Questions tagged as 'laravel'

1
answer

Laravel, to increase the default fields of User authentication, already ready in the laravel via composer

Hello, I wanted to increase the number of fields in the authentication form to insert new fields. use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateUsersTable extends Migration { /** * Run...
asked by 17.06.2016 / 17:33
2
answers

How to include values in the same section, without overwriting the previous one?

I have a view that includes another view . I want these same views to include a javascript in the section of view main called javascripts . So: #layout.blade.php <head>@yield('javascripts')</head> <...
asked by 26.04.2016 / 23:00
1
answer

How to install Laravel 5 without using composer?

Is there any way to install Laravel 5 without using Composer? I think in version 4 there was a way I did not need Composer, but it looks like 5 is now "more composer-dependent."     
asked by 24.08.2016 / 15:31
1
answer

Error sending email form

I have the following problem I made a form of sending email but it gives an error follows the image of the error and the code obs: I am using laravel HTML: <div class="col-md-6 block light text-center wow fadeInRightBig" data-wow-duration="...
asked by 24.08.2016 / 19:59
1
answer

Route without authentication Laravel

Good morning I need to release a REST service on a system with authentication, in Laravel 5.1, so when I access the REST address in a place that is not authenticated it asks to enter login and password, but this service will not need authenti...
asked by 26.08.2016 / 16:14
1
answer

Paginate Updating Requisition?

Good morning, I will try to simplify my difficulty, however any extra doubt I will be available to provide any information of the code ... I have a filter whose I do my searches for certain values and in the end I have a paginate value: <...
asked by 06.07.2016 / 16:51
2
answers

Laravel Authentication Several Types of Different Users

I need a direction guidance on how I will separate my authentications by user type ... My application has 3 types of users, each with its dashboard and specific admin panel, adminGeral (eu), businesses and consumers. I leave everyone in th...
asked by 03.07.2016 / 01:56
1
answer

Formatting Date

Good morning, could anyone help me with this formatting? Well, I have the following form: <div class="form-group col-md-12 col-sm-12 col-xs-12"> <div class="col-md-2 col-sm-2 col-xs-2 form-label"> {{Form::label(...
asked by 13.04.2016 / 15:38
1
answer

Default field to select in illuminate / html

I have a problem and I have already searched the internet for the solution. No success! I have a form and inside it, a select filled in automatically: {!! Form::select('categoria_id', $categorias, null, ['class' => 'form-control']) !!}...
asked by 23.07.2015 / 20:53
1
answer

query between 2 tables laravel

I have the product tables (tbl_products) and the categories table (tbl_categories): - tbl_produtos - id_produto nome id_categoria - tbl_categorias - id_categoria nome What I want is: to display in the view the list of products, where for e...
asked by 08.06.2015 / 11:18