Questions tagged as 'laravel'

0
answers

How to assign spacing between divs using Laravel default stylesheets?

I have the following code snippet: <button type="submit" class="btn btn-primary mb-2"> Cadastrar artigo </button> <table class="table table-striped table-bordered"> In the above excerpt class mb-2 is responsibl...
asked by 08.03.2018 / 00:05
0
answers

build laravel 4.2

Can anyone tell me the best tool to build laravel 4.2? I'm trying to implement gulp, but I'm having a lot of problems when I put it together with laravel and iis server.     
asked by 12.03.2018 / 16:52
0
answers

Laravel echo does not load

I have my main.js file, and I put it in template.blade.php: <script src="{{ asset('site/js/main.js') }}"></script> My main.js: $.ajaxSetup({ headers: { 'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('con...
asked by 01.03.2018 / 20:46
1
answer

3-parameter Json Web Token (JWT) authentication?

I am doing a login system with Laravel using JWT, however I need to pass 3 parameters, being they an identifier, username and password. I can get these parameters but I can not authenticate with the bank. It does user verification and password,...
asked by 27.02.2018 / 16:43
1
answer

Open existing project Laravel

I need to open a project previously made in laravel. I've never worked with laravel, so I do not know where I might be going wrong. The project came in a .zip file when I unzipped it it created a folder called engraf182-my-project-6609a7d5...
asked by 26.02.2018 / 18:11
0
answers

Replace MariaDB with Mysql in Xampp

I have already researched and found almost nothing related to this, so I came to ask for help, MariaDB is giving a laravel error, so I want to switch to Mysql. MariaDB returns this error to me. Looking for solutions, I found some, but they...
asked by 05.03.2018 / 03:28
0
answers

It takes time to load Laravel's route in Apache

Application routes take a long time to load! My file 000-default.conf: <VirtualHost *:9191> ServerName tapio2018.intraer DocumentRoot /var/www/html/tapio2018/public/ <Directory /var/www/html/tapio2018/public/> AllowOv...
asked by 23.02.2018 / 16:34
1
answer

Laravel Cors blocking requirements axios

The setting for my laravel cors is this one. 'supportsCredentials' => false, 'allowedOrigins' => ['*'], 'allowedHeaders' => ['*'], 'allowedMethods' => ['*'], 'exposedHeaders' => [], 'maxAge' => 0, 'hos...
asked by 23.02.2018 / 00:10
0
answers

Identify and list which users viewed a post Laravel

Good afternoon, for the purposes of studies, I'm creating a system of communications, where users register communications in a timeline, but I came across the following doubt, How would I show which users viewed this release? Announcements are s...
asked by 06.03.2018 / 17:31
0
answers

query with many-to-many polymorphic laravel?

I have a polymorphic m-m relationship in my bank where:    class (id, name)       student (id, name)       lesson (id, name)       classable (class_id, classable_id, classable_type) A class has several students and several lessons. a s...
asked by 20.02.2018 / 20:52