Skip to content

Laravel 8 Custom Login With Custom Model

Greetings to all I have a problem with my Laravel 8 code I’m getting “ErrorException Undefined index: password” from vendor/laravel/framework/src/Illuminate/Auth/EloquentUserProvider.php:159 I use custom model and I set up in config/auth.php to use my Client model not a User model and when I…

Getting id of PHP 8 Socket

With the new socket instance returning from socket_create() in php 8, how do we get a numeric or unique reference to this socket in the way casting to int would work in earlier versions. This is used for many things, including connection tracking in log files and storing metadata about connections when they a…

Laravel, search exact same substring in eloquent query

I have a table like this Teacher Table What I am trying to do is to get the row which contains the subjects 1(or any other number like 7,8 etc.) This is what I have tried in my controller. The problem here is that, I am getting all the rows which contains subjects as ‘1’,e.g. if it is ‘3,11,…

How to enable output_buffering on wordpress official image

I’m taking my first steps with Docker, specifically with wordpress official image, which is just amazing to use. However, after installing (via docker-compose as below) and checking phpinfo() it appears that output_buffering = 0. I spent the weekend trying to find the best way to expose, or bind to php.ini to…