← prev | next →
Nadeem🤓 2020-04-07 19:26:17
Dev 2020-04-07 16:27:50
Did you run composer install after cloning the repo?
No
How to do that
Dev 2020-04-07 19:41:57
Nadeem🤓 2020-04-07 19:26:17
No
How to do that
Just run that command from the Laravel project directory:
composer install
That’s it.
cayetanohosma 2020-04-07 20:29:33
dacrixk 2020-04-07 08:18:56
Hey can anyone tell me why I’m getting 403 in laravel datatable ??
Due to the hosting avoid incoming traffic to the standard port
Eng 2020-04-07 20:32:18
كيف اعمل API الأفلييت
ram_the_archer 2020-04-07 21:07:40
Hello guys
Today i configured my laravel setup
Please tell me the best site for laravel tutorial
lexmaa 2020-04-07 21:11:15
ram_the_archer 2020-04-07 21:07:40
Hello guys
Today i configured my laravel setup
Please tell me the best site for laravel tutorial
https://laracasts.com/
LaracastsPush your web developments skills to the next level, through expert screencasts on Laravel, Vue, and so much more.
ram_the_archer 2020-04-07 21:12:08
lexmaa 2020-04-07 21:11:15
https://laracasts.com/
Thanks a lot
lexmaa 2020-04-07 21:13:03
ram_the_archer 2020-04-07 21:12:08
Thanks a lot
you’re welcome
cambardekar 2020-04-07 22:05:03
cambardekar 2020-04-07 08:42:15
But I already have many to many relationship via pivot table
Any update on this?
K0n3st 2020-04-08 02:08:56

Hey, I’ve this problem, but I don’t see it
DesolatorMagno 2020-04-08 02:11:21
show also the code
K0n3st 2020-04-08 02:13:22
DesolatorMagno 2020-04-08 02:16:18
DesolatorMagno 2020-04-08 02:16:46
You see it now?
DesolatorMagno 2020-04-08 02:18:44
K0n3st 2020-04-08 02:19:26
No, sorry
DesolatorMagno 2020-04-08 02:20:36
https://www.php.net/manual/en/language.types.string.php
PHP Begginer 2020-04-08 02:34:54
Any free ecommerce API ?
DepartmentOfDefense 2020-04-08 06:38:39
anyone have a favourite shopping cart for laravel?
ya 2020-04-08 08:30:39
Hello, i have route group => /{main} /* – how i can remove this var in middleware?
cayetanohosma 2020-04-08 10:12:09
DesolatorMagno 2020-04-08 02:18:44
@K0n3st, You are use URL function in a wrong way, https://laravel.com/docs/7.x/urls you should write the URL parameter between curly braces and inside quotes, as part of the URL function parameter, do you see now?
Is the same as channel mate @DesolatorMagno trying to show you with his screenshot
cayetanohosma 2020-04-08 10:15:14
The issue is that url function doesn’t return a strong, it return an object, so you cannot concatenate with a string literal
cayetanohosma 2020-04-08 10:16:56
PHP Begginer 2020-04-08 02:34:54
Any free ecommerce API ?
Did you know about https://github.com/Sylius/Sylius?
GitHub – Sylius/Sylius: Open Source eCommerce Platform on Symfony –
GitHubOpen Source eCommerce Platform on Symfony. Contribute to Sylius/Sylius development by creating an account on GitHub.
cayetanohosma 2020-04-08 10:18:34
DepartmentOfDefense 2020-04-08 06:38:39
anyone have a favourite shopping cart for laravel?
usually I write the shopping cart when I needed, in that way I adapt to the client requirements. It is easy to write, just a class with a collection and a few methods
cayetanohosma 2020-04-08 10:20:43
ya 2020-04-08 08:30:39
Hello, i have route group => /{main} /* – how i can remove this var in middleware?
Which var? {main}?
You know that you can set as conditional, right?
https://laravel.com/docs/7.x/routing#parameters-optional-parameters
PHP Begginer 2020-04-08 10:40:35
cayetanohosma 2020-04-08 10:16:56
Did you know about https://github.com/Sylius/Sylius?
No
cayetanohosma 2020-04-08 10:42:08
have a look maybe it would be useful PHP
PHP Begginer 2020-04-08 10:42:19
Thanx
crazycaw 2020-04-08 11:34:08
it’s possible to check if a build variable has a where condition?
crazycaw 2020-04-08 11:34:14
specific where condition..
stefan_ssv 2020-04-08 12:20:46
crazycaw 2020-04-08 11:34:08
it’s possible to check if a build variable has a where condition?
you always can extract sql string $query->toSql() and and search substring in it
2020-04-08 12:27:03
hey guys how cani remove error 404 in laravel?.I have already removed and reinstalled both laravel and
xampp but to no avail.
akhil341 2020-04-08 12:30:51
2020-04-08 12:27:03
hey guys how cani remove error 404 in laravel?.I have already removed and reinstalled both laravel and
xampp but to no avail.
Do you know actually what the response 404 means ??? check your routes with php artisan route:list command and find is it available that you requested from the browser.
Nikegolus 2020-04-08 12:33:18
Hello guys, question…how can i call a method existing in an “x” laravel application from my “y” laravel application ?
akhil341 2020-04-08 12:34:58
2020-04-08 12:27:03
hey guys how cani remove error 404 in laravel?.I have already removed and reinstalled both laravel and
xampp but to no avail.
Or if you want to remove 404 error permanently for any other reason your any route method ,
route::any({slug}), function(){
return view(‘home’);
)}
akhil341 2020-04-08 12:35:52
Nikegolus 2020-04-08 12:33:18
Hello guys, question…how can i call a method existing in an “x” laravel application from my “y” laravel application ?
Use API with Passport
Nikegolus 2020-04-08 12:36:37
akhil341 2020-04-08 12:35:52
Use API with Passport
ok i will study about that, thank you for the answer 👍👍👍
2020-04-08 12:39:53
akhil341 2020-04-08 12:34:58
Or if you want to remove 404 error permanently for any other reason your any route method ,
route::any({slug}), function(){
return view(‘home’);
)}
but the error was after vhost configuration that i did.Earlier the application was running smoothly with
php artisan command.Could those changes be the problem.?
akhil341 2020-04-08 12:40:39
2020-04-08 12:39:53
but the error was after vhost configuration that i did.Earlier the application was running smoothly with
php artisan command.Could those changes be the problem.?
Got it , are you hosting with apache ???
Alireza1kazemi 2020-04-08 12:41:03
Hi
Guys
is mongo DB is better than MySQL in big projects?
Sth like Amazon or Ebay…
akhil341 2020-04-08 12:42:10
2020-04-08 12:39:53
but the error was after vhost configuration that i did.Earlier the application was running smoothly with
php artisan command.Could those changes be the problem.?
attach your virtual host conf here..
2020-04-08 12:53:56
akhil341 2020-04-08 12:42:10
attach your virtual host conf here..

akhil341 2020-04-08 13:01:35
Try with this one may be solve .
<VirtualHost *:8700>
ServerName payroll.dev
DocumentRoot “c:/xampp/htdocs/payrollSystem/public”
ServerAlias www.payroll.dev
<Directory “c:/xampp/htdocs/payrollSystem/public”>
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
2020-04-08 13:05:00
akhil341 2020-04-08 13:01:35
Try with this one may be solve .
<VirtualHost *:8700>
ServerName payroll.dev
DocumentRoot “c:/xampp/htdocs/payrollSystem/public”
ServerAlias www.payroll.dev
<Directory “c:/xampp/htdocs/payrollSystem/public”>
DirectoryIndex index.html index.php
Options FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
lot of thanks for your advice bro.I’m gonna work on it.
cayetanohosma 2020-04-08 13:21:40
2020-04-08 12:27:03
hey guys how cani remove error 404 in laravel?.I have already removed and reinstalled both laravel and
xampp but to no avail.
Hi, you can overwrite the exception handler and set your own error message.
https://laravel.com/docs/7.x/errors
sadeqi125 2020-04-08 14:35:40
how to save last logintimt and client ip in laravel user
cayetanohosma 2020-04-08 14:50:03
sadeqi125 2020-04-08 14:35:40
how to save last logintimt and client ip in laravel user
Try to listen the event when the user log in. In that method you can do a lot of tasks related to the login process
sadeqi125 2020-04-08 14:51:00
cayetanohosma 2020-04-08 14:50:03
Try to listen the event when the user log in. In that method you can do a lot of tasks related to the login process
can help me
cayetanohosma 2020-04-08 14:51:39
have a look to this https://laravel.com/docs/7.x/events#writing-event-subscribers
2020-04-08 15:09:51
Hii… I am btech cse student currently I am doing one project of my intern … Which is on laravel
← prev | next →