Questions tagged as 'laravel'

1
answer

as samples my data without the labels I keep tinymce?

I have a small problem, what happens is that I'm doing a forum in laravel, and where they are supposed to put the description or code integrated e tinymce for it, to save the data in the DB is not the problem, what I'm doing is making a select i...
asked by 02.02.2017 / 20:50
0
answers

Database for high school laravel

I am creating an intranet for a particular school and I have some questions, how can I design the database in such a way that a teacher can place a note in a subject, it is stored and then a logged student can see that note ?. This is what I hav...
asked by 08.02.2017 / 17:48
1
answer

Full Outer Join in Laravel

my query is like doing a FULL OUTER JOIN in Laravel, I have version 5.1 Example: Thank you very much.     
asked by 31.01.2017 / 03:38
0
answers

convert form ipn paypal php to laravel

I have an example code about ipn (paypal) that is in php. that works correctly for me but I would like to implement it within a laravel driver and I do not get it. since "NO" I have a lot of programming knowledge. the ipn path example: test.c...
asked by 21.01.2017 / 18:59
0
answers

Laravel 5.2: php artisan returns "Could not find driver" in terminal

I am adapting the Socialite topic of JOJO Themes in a site and it is giving me an error when executing php artisan in the terminal of my server. I have already made the corresponding configuration to the database and the application...
asked by 20.01.2017 / 06:08
1
answer

Avoid error screens by address bar manipulation

I would like to know how to avoid an error of the type  NotFoundHttpException in RouteCollection.php line 161 (or any other error that informs the user of what happens in laravel) when entering manually or trying to manipulate the address bar by...
asked by 18.01.2017 / 18:33
1
answer

Jquery does not work in laravel 5.3

I have a problem with my Jquery in laravel, I have it in the Public folder and I have it with the following code in my main Template as follows: <script src="{{asset('js/jquery-3.1.1.js')}}"></script> <script src="{{asset('js/bo...
asked by 29.12.2016 / 15:18
1
answer

Laravel collective does not recognize the class FORM laravel 5.3

I have installed the Laravel Collective HTML to do the forms and everything that makes Laravel safe. I have the Collective\Html\HtmlServiceProvider::class, in the config / app.php in the providers section and I also have...
asked by 29.12.2016 / 23:03
1
answer

Image intervention wrong path when saving image

It turns out that following a tutorial to save the image I did this public function store(Request $request) { $file = Input::file('imagen1'); $image = \Image::make(\Input::file('imagen1')); $path = public_path().'...
asked by 04.12.2016 / 23:35
3
answers

Sub-workshops for controllers in Laravel 4.1

I want to organize my code a bit and I want to put all the controllers belonging to the administrator in a folder inside, for example: controllers/administrador/LogingController.php and on the route I specify it in the following way: Rout...
asked by 26.02.2017 / 23:09