Laravel 8 is now released!
https://laravel.com/docs/8.x/releases
Brunodebrito2020-09-12 01:57:29
alguem tem algum curso legal ai de laravel?
Naeim_Mohammadi2020-09-12 02:28:38
2020-09-11 23:50:33
Laravel 8 is now released!
https://laravel.com/docs/8.x/releases
It released 4 days ago
K2020-09-12 05:27:13
Hello Everyone,
One of my friend looking for part time job having 8+ years of experience in web development. Does anyone looking for freelancer here??
sahilbalgotra2020-09-12 08:48:37
fusuf2020-09-11 22:31:04
looking as cc phishing
Use fake cc if u don’t wnana use ur cc
arxnday2020-09-12 09:03:47
xyz domain costs little more than $1, what the point in getting it free?
arxnday2020-09-12 09:07:53
2020-09-11 23:50:33
Laravel 8 is now released!
https://laravel.com/docs/8.x/releases
holy cow, i’m still not tried 7.*
and not only it, all my lara projects still uses 5.7/5.8…
arxnday2020-09-12 09:08:56
rule #1
if it works – don’t touch it
Pro2020-09-12 09:09:58
arxnday2020-09-12 09:08:56
rule #1
if it works – don’t touch it
Exactly. I’m also have projects with 5.8 and I’m not thinking to upgrade anything π
2020-09-12 11:04:48
Eloquent relationships in Laravel
Laravel Tutorial – Eloquent BelongsTo & HasMany & HasOne Relationships – YouTube We will discuss together the eloquent relationships in Laravel and take a look at the documentation to see how to grab the information from it. If you find this video useful share it with your friends to spread the knowledge.
anyone? how can i solve this problem? I appreciate your help.
praneet812020-09-12 12:16:38
You need to fill those fields in your form
praneet812020-09-12 12:16:51
As you have set these as required fields
praneet812020-09-12 12:18:07
If all those fields are not mandatory then remove the required from your validation
praneet812020-09-12 12:18:36
And just add the other validations for each field in their respective if statements
praneet812020-09-12 12:19:13
And if all the fields are required and mandatory then you don’t need to put if statements like this in your code
Phen2020-09-12 12:40:22
Hello all,
Could anyone suggest me the Composer package for captcha verify in laravel api
I tried to search, but I can not find the good one
FlyMeSyndrom2020-09-12 14:21:05
i wanna ask something when i wrote ajax method post why akways return 302 anyone can help me ?
natghi20102020-09-12 14:23:54
what happens if you have a cron job that takes so long that the next round of scheduling execution occurs? Does it open a second process or do it wait until the first one is finished?
PramodSahoo2020-09-12 14:43:47
natghi20102020-09-12 14:23:54
what happens if you have a cron job that takes so long that the next round of scheduling execution occurs? Does it open a second process or do it wait until the first one is finished?
It will start another process. If you want to stop the last one then need to use kill command at the top of the cron
natghi20102020-09-12 14:44:39
PramodSahoo2020-09-12 14:43:47
It will start another process. If you want to stop the last one then need to use kill command at the top of the cron
top of cron meaning?
PramodSahoo2020-09-12 14:45:00
First line of your cron file.
natghi20102020-09-12 14:47:47
PramodSahoo2020-09-12 14:45:00
First line of your cron file.
Okay thanks. I decided to put a timeout.
PramodSahoo2020-09-12 14:48:50
Sleep may not help. Because it will delay your previous cron also. So resulting no benefit
AMIT2020-09-12 14:49:20
Big changes in Laravel 8.0
————————————————-
In Laravel 8.0 we have 2 new options for frontend scaffolding:
1. Livewire which uses Laravel Blade
2. Inertia.js which uses Vue.js
Need to choose only one for the project.
Moreover, instead of Bootstrap…Tailwind CSS is used.
natghi20102020-09-12 14:49:46
PramodSahoo2020-09-12 14:48:50
Sleep may not help. Because it will delay your previous cron also. So resulting no benefit
whats the kill command?
PramodSahoo2020-09-12 14:52:13
Itβs a linux commnad which kills or stops the process id which is working to execute your previous cron
natghi20102020-09-12 14:58:22
PramodSahoo2020-09-12 14:52:13
Itβs a linux commnad which kills or stops the process id which is working to execute your previous cron
How To Do Basic Server Security Setup For Ubuntu / Linux | StackCoder – StackCoder In this article, you will learn how to set up basic server security like SSH login, disable root login, disable password login, disable challenge-response authentication.
aminhd26582020-09-12 15:45:33
Hello , how i can pass βeβ to laravel include ?!
skys2152020-09-12 16:03:51
You cannot
skys2152020-09-12 16:04:38
Include is rendered even earlier than js
skys2152020-09-12 16:05:43
Save that included file as js template, and write a function to render product
aminhd26582020-09-12 16:07:16
skys2152020-09-12 16:05:43
Save that included file as js template, and write a function to render product
How ?!
Please explain more…
skys2152020-09-12 16:14:46
Which step you dont understand?
aminhd26582020-09-12 16:17:58
skys2152020-09-12 16:14:46
Which step you dont understand?
How include file as js temp?!
skys2152020-09-12 16:25:33
Learn js template first Like mustache or hashbang? Not sure about that
LefmyHans2020-09-12 16:32:25
Hello ! I wish I had a way to avoid full reloading of my pages with laravel. Would you have a proposal for me, please ?
skys2152020-09-12 16:48:13
What do you mean by full reloading?
pushpak13002020-09-12 16:52:54
LefmyHans2020-09-12 16:32:25
Hello ! I wish I had a way to avoid full reloading of my pages with laravel. Would you have a proposal for me, please ?
Use livewire
princeferozepuria2020-09-12 17:05:46
AMIT2020-09-12 14:49:20
Big changes in Laravel 8.0
————————————————-
In Laravel 8.0 we have 2 new options for frontend scaffolding:
1. Livewire which uses Laravel Blade
2. Inertia.js which uses Vue.js
Need to choose only one for the project.
Moreover, instead of Bootstrap…Tailwind CSS is used.
yeah!!!
LefmyHans2020-09-12 17:06:28
skys2152020-09-12 16:48:13
What do you mean by full reloading?
When the page reloads add-on when one clicked on a link for example
skys2152020-09-12 17:12:18
LefmyHans2020-09-12 17:06:28
When the page reloads add-on when one clicked on a link for example
Use ajax Or do you mean spa?
imhajiiii2020-09-12 17:47:40
please help me in order craete
aleemont2020-09-12 18:09:35
Hi, my name’s Alessandro and I’m new with Laravel
I’m trying to use Livewire on my Apache web server
And I am using the official screencasts to learn
So here’s the problem
I wrote a very easy script
Which should read from an input, change the value of a variable, and display it on the page
But
When I load the page, notging happens
It just shows the input and the text
So I went through my browser console
And it shows
GET http://localhost/livewire/livewire.js?id=*randomNumbers*… net:ERR_ABORTED(not found)
And
Uncaught ReferenceError: Livewire is not defined at (index):35