Contents:
Hello, whats the best Tutorial for laravel?
Thanks, u sure thats through and Complete?
Hi all, how get the response when I used axios post?
Hello, whats the best Tutorial for laravel?
Thanks, u sure thats through and Complete?
Hi all, how get the response when I used axios post?
FonteneleBR 2020-02-27 02:12:45
So just use phpstorm eap or buy a signature
FonteneleBR 2020-02-27 02:14:09
But crack its not legal
mohittyagi99 2020-02-27 02:24:20
FonteneleBR 2020-02-27 02:14:09
But crack its not legal
I know that! I’m student and learning PHP! Can’t afford it!
2020-02-27 02:39:11
Hello, whats the best Tutorial for laravel?
2020-02-27 02:40:24
I Seek to learn it throughly
ursrk 2020-02-27 02:41:39
mohittyagi99 2020-02-27 02:24:20
I know that! I’m student and learning PHP! Can’t afford it!
Use 2019.2 instead of 2019.3 (latest version)
mohittyagi99 2020-02-27 02:41:59
2020-02-27 02:39:11
Hello, whats the best Tutorial for laravel?
Laracasts
mohittyagi99 2020-02-27 02:42:05
ursrk 2020-02-27 02:41:39
Use 2019.2 instead of 2019.3 (latest version)
Okay! Got that!
2020-02-27 02:43:19
mohittyagi99 2020-02-27 02:41:59
Laracasts
Thanks, u sure thats through and Complete?
mohittyagi99 2020-02-27 02:43:42
2020-02-27 02:43:19
Thanks, u sure thats through and Complete?
Welcome As Always! 🙂
G0MPER 2020-02-27 03:35:34
Hi all, how get the response when I used axios post? Only Get error 400 in Chrome
FonteneleBR 2020-02-27 04:05:57
G0MPER 2020-02-27 03:35:34
Hi all, how get the response when I used axios post? Only Get error 400 in Chrome
Set api route, not web route. routes/api.php
Sam Op 2020-02-27 04:59:51
Pls I’m new to laravel and I’m hoping if u could point me to the right resources as a beginner
Sam Op 2020-02-27 05:01:01
Ok
sadeqi125 2020-02-27 08:29:59
419 page expired this is my problome when i login system
sadeqi125 2020-02-27 08:30:04
in cpanel
sadeqi125 2020-02-27 08:30:17
but local work correct
sadeqi125 2020-02-27 08:30:25
how solve this error
rebory 2020-02-27 09:36:59
sadeqi125 2020-02-27 08:30:25
how solve this error
go back home and hit login url
rebory 2020-02-27 09:38:53
my ajax form working fine, but when i ad some other code in the crud it’s through error like on chnage send ajax request two time
rebory 2020-02-27 09:39:13

rebory 2020-02-27 09:39:14

rebory 2020-02-27 09:39:14

rebory 2020-02-27 09:39:15

rebory 2020-02-27 09:39:15

sadeqi125 2020-02-27 09:39:54
rebory 2020-02-27 09:36:59
go back home and hit login url
i try then go to page expird
doempechvathna 2020-02-27 11:07:13
Please me to upload project laravel to htdoc in cpanel
rebory 2020-02-27 11:52:39
doempechvathna 2020-02-27 11:07:13
Please me to upload project laravel to htdoc in cpanel
upload your project on your public_html
rebory 2020-02-27 11:53:16
and create new .htaccess under public_html
rebory 2020-02-27 11:53:44
just put this code
rebory 2020-02-27 11:53:46
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>
rebory 2020-02-27 11:54:03
and save no need to do anything
rebory 2020-02-27 11:54:11
else
rebory 2020-02-27 11:56:04
and do one more step if you got errros open bootstrap /cache/ and delete config.php file don’t warry it regenerate auto
PHP Begginer 2020-02-27 13:43:37
Hi Team , I am having some problem with my application ,when i try to navigate to my application ,i get the following error message below. Also it was working fine before .Return value of SpatiePermissionPermissionRegistrar::getPermissionClass() must be an instance of SpatiePermissionContractsPermission, instance of IlluminateFoundationApplication returned
skys215 2020-02-27 13:55:42
rebory 2020-02-27 11:56:04
and do one more step if you got errros open bootstrap /cache/ and delete config.php file don’t warry it regenerate auto
#deploying_on_a_shared_host
for someone who may concern
dacrixk 2020-02-27 14:09:43
Hello guys
I have 3 tables
followers
user
user_details
I use belongsToMany so I’m getting user table details how can I get details from user_details also
skys215 2020-02-27 14:12:12
Read doc, eloquent relationships
dacrixk 2020-02-27 14:16:00
skys215 2020-02-27 14:12:12
Read doc, eloquent relationships
Tried but I Cant understand
dacrixk 2020-02-27 14:16:04
What to do
skys215 2020-02-27 14:17:19
show me your user model
dacrixk 2020-02-27 14:23:34

dacrixk 2020-02-27 14:25:32

dacrixk 2020-02-27 14:25:47
I also need data from user_details table
skys215 2020-02-27 14:30:11
you mean user detail of [‘follwings’][‘details’][‘user_id’]?
dacrixk 2020-02-27 14:34:19
skys215 2020-02-27 14:30:11
you mean user detail of [‘follwings’][‘details’][‘user_id’]?
Ni user details of followers
skys215 2020-02-27 14:40:07
you can use with() or load() with dot.
dacrixk 2020-02-27 14:40:22
With not working
skys215 2020-02-27 14:40:31
with(‘details.user.details’)
something like this
of course, you need to set the relationships
something like this
of course, you need to set the relationships
dacrixk 2020-02-27 14:40:32
Not getting data from user_details table