Questions tagged as 'laravel'

1
answer

Line break between PHP and HTML

You see, I have the following code: <?php $limite=100; if(strlen($juego->desarrollo)>$limite) $d=substr($juego->desarrollo,0,$limite)."\r\n(Seguir Leyendo)"; else $d=$juego->desarrollo; ?> <hr&g...
asked by 19.09.2018 / 21:42
1
answer

How to keep the file name when downloading it?

I have a small problem with the name of the files when they are downloaded. So I release them public function expensesAndTravel(){ $file = storage_path() . '\app\excel\REPORTE DE GASTOS Y VIATICOS.xlsx'; $headers = ['Content-Type' =>...
asked by 25.09.2018 / 15:11
2
answers

unsafe site SSL certificate

Good day, I have a problem with my page, install my site in a VPS and add an SSL certificate and it works but before entering the message "SITE NOT SURE" someone knows what is due? my site is this     
asked by 14.10.2018 / 02:29
2
answers

Modify Driver to update do not insert

I have this driver to upload two tables at once from a form works well but I have the question of how I can modify it so that instead of inserting in the Point table the update someone gives me a hand ?? thank you .. public function store(Re...
asked by 24.10.2018 / 18:58
1
answer

text protrudes from div

I have a div inside which there are 4 buttons, but the text excels the div by reducing the screen my html <div class="row"> <div class="col-lg-3 col-md-4 col-sm-6"> {{ Form::button(nombre, ['class' =&...
asked by 26.10.2018 / 19:14
1
answer

How to set a variable without php sessions?

I am doing a social network login using laravel Socialite, however I need to save a variable that is the origin of the page where you are registering. According to the documentation, I have the following methods in my controller. public fun...
asked by 25.10.2018 / 04:27
2
answers

Filter insert in bd according to the date

I have an application in laravel, which manages the holidays, I have a problem when filtering the dates selected by the workers, since I am only able to filter the start and end date, the problem is that according to the department 2 workers can...
asked by 02.08.2018 / 12:22
1
answer

Error Call to undefined function storage_patch () when I run a seeder in laravel

I'm trying to run a seeder but I get the error: Call to undefined function storage_patch() I could not find the one. I have a table in migration called user with the sgts fields: use Illuminate\Support\Facades\Schema; use Illuminate\...
asked by 26.10.2018 / 21:08
1
answer

problem to relate tables with foreign in laravel

I do not know why it says registry table, if registration is called my database ..     
asked by 28.08.2018 / 02:14
1
answer

Using BLADE without Laravel?

I am learning PHP and I would like to be able to use BLADE. Is there any way to use it without having to use Laravel? I found some information in English, but I do not know how to start using it. This is the one that I have found for example:...
asked by 07.06.2018 / 10:33