In laravel Fortify, is it possible to authenticate only user who account is active?

|
shinejemi 2021-04-08 21:10:12
rahul_v3 2021-04-08 21:09:32
Because mostly front end framework depending on apis

I’m not using any front end framework

rahul_v3 2021-04-08 21:10:24
Sorry angular wrongly type*
2021-04-08 21:10:30
shinejemi 2021-04-08 21:08:26
How?

In case, you need one Central platform for all Web / mob app…

rahul_v3 2021-04-08 21:10:46
shinejemi 2021-04-08 21:10:12
I’m not using any front end framework

So how can u create a connection with djanho

shubhamdholke 2021-04-08 22:19:42
Hello Everyone I have own script need to help fix some buge
shubhamdholke 2021-04-08 22:19:57
Affiliate tracking software
shubhamdholke 2021-04-08 22:20:09
Can you help me anyone
Ebenezer Oyenuga 2021-04-08 22:57:40
ArchRaphel 2021-04-08 16:40:41
I added this to my Post Model

Actually this is a strange way of using laravel.
Your table should be the plural of your form

Ebenezer Oyenuga 2021-04-08 22:57:59
Ebenezer Oyenuga 2021-04-08 22:57:40
Actually this is a strange way of using laravel.
Your table should be the plural of your form

*model not form

tulpartech 2021-04-08 23:20:46
Hey.
Have you ever used Apple login in Laravel ?
I need a solution for that, I’m developing an api project for mobile app. I need to login as Apple’s user. Can you help me about it ?
2021-04-09 06:38:24
tulpartech 2021-04-08 23:20:46
Hey.
Have you ever used Apple login in Laravel ?
I need a solution for that, I’m developing an api project for mobile app. I need to login as Apple’s user. Can you help me about it ?

Sign in with Apple for LaravelVimeo
Installation instructions for the Laravel Socialite driver for “Sign in with Apple”.
focalfossa20 2021-04-09 07:29:18
Help me guys in this thread https://stackoverflow.com/questions/67014947/how-to-union-more-than-to-table-in-laravel

How to union more than to table in laravelStack Overflow
I want to union table questions and choices in query builder JSON Resource laravel, when I’m trying this, I’m getting an error, what’s wrong with my code?, please give me some advice on this code

imad_khamkhami 2021-04-09 08:15:05
Hello, How to use vue js in laravel jetstream?
foulla_sam 2021-04-09 08:39:46
imad_khamkhami 2021-04-09 08:15:05
Hello, How to use vue js in laravel jetstream?

install jetstream with inertia stack

ssmmmmmmjrjd 2021-04-09 08:59:26
laravel_discuss-75998.jpg

ssmmmmmmjrjd 2021-04-09 08:59:36
#ask
how to align bottom right for show entries datatables ?
ChristianoErick 2021-04-09 09:15:58
Hey guys, have you used ioncube to encrypt blade files?
foulla_sam 2021-04-09 09:28:29
Hi
I have this error
foulla_sam 2021-04-09 09:28:47
laravel_discuss-76002.jpg

foulla_sam 2021-04-09 09:29:34
laravel_discuss-76003.jpg
But my route is a post route
focalfossa20 2021-04-09 09:30:09
hi guys, what’s the meaning of the error: SQLSTATE[42601]: Syntax error: 7 ERROR: zero-length delimited identifier at or near “”””nLINE 1: in laravel using postgresql
foulla_sam 2021-04-09 09:30:13
laravel_discuss-76005.jpg
This is how I use it
foulla_sam 2021-04-09 09:35:38
foulla_sam 2021-04-09 09:30:13
This is how I use it

Resolved 😊

ArchRaphel 2021-04-09 10:20:58
Good day guys,

Thank you @DesolatorMagno for your assistance yesterday.

Today’s problem
I have an index.blade.php file, I want to create a login link inside the index page so that when user click login from index page, it takes the user to login page.

I tried putting <a href=”{{ url(‘login’) }}”>Login</a> in the index page.

What else do I need to do to get it working.

Note: both index and login page are in same view folder

tulpartech 2021-04-09 10:59:13
laravel_discuss-76008.jpg

tulpartech 2021-04-09 10:59:46
I’m getting this error when I want to install a new package. Anyone experienced it before ??
tulpartech 2021-04-09 11:00:56
Probably it’s becaouse of php version.
I have updated my php version a few days ago and composer still like this :
“php”: “^7.3|^8.0”,
tulpartech 2021-04-09 11:01:12
But new version is (8.0.3).
shinejemi 2021-04-09 11:58:28
rahul_v3 2021-04-08 21:10:46
So how can u create a connection with djanho

By making CRUD based functions

foulla_sam 2021-04-09 12:39:19
In laravel Fortify, is it possible to authenticate only user who account is active?

I have a column ‘status’ in my database and I want Fortify to check and authenticate only user with active account

Kapil Sharma 2021-04-09 14:27:49
$query->selectRaw(
‘*,
CASE
WHEN created_at >= ? AND _.verified = 1 THEN 2
WHEN created_at >= ? THEN 1
ELSE 0
END AS weight1,
IF (LOCATE(clips.language, ?) > 0, 1, 0) AS weight2’,
[$seen, $seen, $languages]
);
Kapil Sharma 2021-04-09 14:28:12
Can anybody explain meaning of question mark here
Kapil Sharma 2021-04-09 14:29:32
$seen = $request->get(‘seen’);
if (is_numeric($seen)) {
$seen = Carbon::createFromTimestampMs($seen);
} else {
$seen = now();
}
Kapil Sharma 2021-04-09 14:29:51
And use of $seen also
DesolatorMagno 2021-04-09 16:24:40
Kapil Sharma 2021-04-09 14:28:12
Can anybody explain meaning of question mark here

Read about prepared statement and PDO.

|