Questions tagged as 'laravel'

1
answer

Do not open modal in Laravel

I used to have my code organized like this. Part of my index.php <!-- barra de navegacion --> <div class="navbar navbar-inverse navbar-fixed-top" role="navigation"> <div class="container-fluid">...
asked by 13.11.2016 / 19:05
1
answer

How to do a visit counter in Laravel 5?

I am working on Laravel 5.3 and I am looking for some package or some data to make a visit counter for both a web in general, and for every article that contains the site. I'm more interested in each article.     
asked by 23.09.2016 / 01:27
1
answer

a dynamic selection

the BD "deposits" 'id', 'cantidad', 'num_autorizacion', 'fecha', 'asesor', 'created_at', 'updated_at', 'encontrado', 'contrato_id' in the controller $depositos = Deposito::orderBy('fecha') ->whereIn('encontrado', ['no'])...
asked by 05.11.2016 / 19:12
1
answer

Problems with the Cors in Laravel and Angular

I am trying to send the information from AngularJ to my apirest of L5 the information is from the Login e users with your password the error is as follows. I have tried for minutes to apply several L5 packages in relation to this...
asked by 08.09.2016 / 20:04
1
answer

validate data with the request

example I have a view with {!! Form::text('pagado',$pago, null, ['class' => 'form-control', 'placeholder' => 'Ingrese Cantidad $$$' , 'required']) !!} the variables I bring from a database $ payment. I have a request (PaymentRequ...
asked by 24.08.2016 / 18:26
1
answer

Laravel | Fill in 2 MySQL tables at the same time

I am working on an application in Laravel, and I have 3 MySQL tables: ( role-users-permissions_users ), I need to know how to fill 2 tables in a single register ie the user registers, a id is saved as a primary in the table " users ", and that...
asked by 02.07.2016 / 19:24
1
answer

Auth :: login ($ user) laravel

I'm using Auth::login($user); to log in manually using fluent / querybuilder    Example $count = DB::table('users') ->where('username', '=', $username) ->where('password', '=', $password)...
asked by 06.09.2016 / 22:58
1
answer

Laravel 5. * add own hash

I have created a helper with a proper function to hash the password (named CustomHash) and it registers well but does not log in, following a tutorial of similar questions I did the following: Create a folder libraries = > App \ libraries...
asked by 03.09.2016 / 00:21
1
answer

I can not send emails in laravel

I'm trying to send emails in laravel, and I get the following error    Expected response code 250 but got code "553", with message "553 Relaying disallowed as It's weird, because if it works for me to send emails when I'm logged in, but i...
asked by 23.06.2016 / 19:54
1
answer

Render HTML on Laravel blade

I have the following problem, I want to render html inside a template made with laravel bucket. I have it in the following way: <i class="n-icon-help-circled" data-toggle="tooltip" data-placement="right" title="{{ '<p>' . _('Hola...
asked by 07.06.2016 / 14:39