I got this error when I opened my project again would u please help?

|
Diego 2020-09-08 03:51:09
laravel_discuss-50047.jpg

Diego 2020-09-08 03:51:40
This is my route🤔
Diego 2020-09-08 03:52:48
And its ok
Diego 2020-09-08 03:53:03
something funny is that I have another method above that also expects (‘/panel’), and it works
night days 2020-09-08 03:54:49
strange
Atul 2020-09-08 08:04:31
Anyone please tell me stable version of Laravel for production
themanojyadav 2020-09-08 08:10:36
Atul 2020-09-08 08:04:31
Anyone please tell me stable version of Laravel for production

7

rebory 2020-09-08 08:27:14
friends i need your help urgent
Shijinsubramanniam 2020-09-08 08:27:47
Anybody know to integrate ccavenue payment gateway in laravel?
rebory 2020-09-08 08:27:54
laravel_discuss-50061.jpg
my method
rebory 2020-09-08 08:28:14
laravel_discuss-50062.jpg
blade
rebory 2020-09-08 08:28:52
through method pass all orders – collection
rebory 2020-09-08 08:29:51
in some condition i need show staus wise order record with paginate
rebory 2020-09-08 08:30:08
but it gave mein error pls read my blade code first
rebory 2020-09-08 08:34:58
Shijinsubramanniam 2020-09-08 08:27:47
Anybody know to integrate ccavenue payment gateway in laravel?

many packages already available

Atul 2020-09-08 08:42:56
themanojyadav 2020-09-08 08:10:36
7

One more question …is it difficult process to migrate project older version to new version

Atul 2020-09-08 08:43:08
Please help me
DesolatorMagno 2020-09-08 08:44:28
The difficulty will be with the installed packages, for the rest just reading the documentation and making 1 upgrade at the time make it easier.
DesolatorMagno 2020-09-08 08:47:04
rebory 2020-09-08 08:28:14
blade

Paginate is for query not for collection.

themanojyadav 2020-09-08 08:47:07
Atul 2020-09-08 08:42:56
One more question …is it difficult process to migrate project older version to new version

No. Just follow the upgrade guide. You need to do some minor changes only. Go to the laravel website and in version 7 follow the upgrade instructions

rebory 2020-09-08 08:49:01
DesolatorMagno 2020-09-08 08:47:04
Paginate is for query not for collection.

sorry i cant understand pls tell me right way can you write one line code for me?

rebory 2020-09-08 08:53:26
DesolatorMagno 2020-09-08 08:47:04
Paginate is for query not for collection.

i know it for quert but how i do in blade filter , record filter successfully but paginate not added

DesolatorMagno 2020-09-08 09:00:31
Because you are filtering a collection, you can do it (is slower than doing it directly in the database) but you can’t paginate inside the collection.
DesolatorMagno 2020-09-08 09:01:43
In the moment you do the get(), it get the data and become a collection.
DesolatorMagno 2020-09-08 09:03:24
So you can make a different query in the controller and send the data ready.
rebory 2020-09-08 09:04:31
DesolatorMagno 2020-09-08 09:01:43
In the moment you do the get(), it get the data and become a collection.

if i send paginate from controller it not work for cancelled orders while i filtered in blade

DesolatorMagno 2020-09-08 09:06:23
Well you gotta do it in another way, if the job was so easy, the IA would have already our jobs XD.
DesolatorMagno 2020-09-08 09:06:36
Gonna sleep, good luck.
rebory 2020-09-08 09:20:01
DesolatorMagno 2020-09-08 09:06:36
Gonna sleep, good luck.

thank for puzzle me

Jihat_developer 2020-09-08 09:59:10
how use l5-swagger in laravel/modules ? please help me
Atul 2020-09-08 13:46:29
themanojyadav 2020-09-08 08:47:07
No. Just follow the upgrade guide. You need to do some minor changes only. Go to the laravel website and in version 7 follow the upgrade instructions

Thank u sir👍

Maha A 2020-09-08 15:00:00
laravel_discuss-50091.jpg

Maha A 2020-09-08 15:00:14
Hello I got this error when I opened my project again would u please help?
abdu_curry 2020-09-08 15:05:30
Maha A 2020-09-08 15:00:00

did you start the server?

Maha A 2020-09-08 15:10:32
Yes I did
Maha A 2020-09-08 15:10:46
I will check
Sumanta_mukhopadhyay 2020-09-08 15:14:05
Curlcuts.com
Xper1 2020-09-08 15:14:29
check and start your server
Typ980 2020-09-08 15:19:20
hello, sorry to interrupt, I want to ask, does anyone know why CORB (Cross Origin Read Blocking) was blocked when I built the Login page? Thank you..
imhajiiii 2020-09-08 15:47:47
laravel_discuss-50103.jpg

imhajiiii 2020-09-08 15:47:57
please help for error
abdu_curry 2020-09-08 15:57:46
imhajiiii 2020-09-08 15:47:47

before making a forien key with state tabel the state table must migrate first before address table

parmonov98 2020-09-08 16:06:01
Hello, guys!
I have got some problems.
I have User and Page is kinda info about the user like Profile.
I have created User(using php artisan ui bootstrap –auth) and PageController and Page (controller, model php artisan make:model and controller)

I have linked them using relations with one-to-one
What is my problem?

<?php

namespace AppHttpControllers;

use AppUser;
use IlluminateHttpRequest;
use IlluminateSupportFacadesApp;
use IlluminateSupportFacadesAuth;

//use IlluminateSupportFacadesAuth;

class PageController extends Controller
{
//
public function index(User $user)
{

dd($user);
return view(‘pages.index’, compact(‘user’));
}
}

I don’t get $user->page values using public function index(User $user)
What am I doing wrong?

parmonov98 2020-09-08 16:06:47
laravel_discuss-50110.jpg
Page model
parmonov98 2020-09-08 16:07:06
laravel_discuss-50111.jpg
User model
parmonov98 2020-09-08 16:07:28
laravel_discuss-50112.jpg
Page migration
parmonov98 2020-09-08 16:08:11
laravel_discuss-50113.jpg
attributes is empty
parmonov98 2020-09-08 16:10:10
laravel_discuss-50114.jpg
but when I do use `
$user = AppUser::findOrFail($user);
then it works.

What’s wrong with my code, guys?

Diego 2020-09-08 16:19:40
Hello! Can I send my stack overflow question here?
Diego 2020-09-08 16:19:52
The link
|