EDDYMENS


Published 2022-10-08 04:00:41

Here's How To Create A Responsive Pagination Outline | Scrollable

Displaying all page numbers can distort your page if there are too many of them. You can prevent this by applying a horizontal scrolling effect to the pager. By applying a scroll effect you can tack away page numbers that don't fit the page and access them by scrolling. The code below show...

Published 2022-09-17 05:31:05

Using Surreal DB With Laravel|PHP

Among the many nice things that Surreal DB provides, the one that is most interesting to me is how it handles relationships. I have been trying it out and liking it. I do a lot of PHP and so my first instinct was to look for the Surreal PHP package. Well since it's relatively new so...

Published 2022-09-12 17:21:17

PHP Check If String Contains

...

Published 2022-09-09 06:43:17

Prevent MacOS From Creating A .ds_store File

If you work on macOS, you might have noticed whenever you add image files or some media file to your project, a hidden file is created automatically. This is how macOS stores metadata for media files. But you don't want this in your project. There are two way...

Published 2022-09-04 08:33:17

Laravel PHP 8 Throws Error Too Few Arguments To Function | Fix

Generally, when you get this error your controller is likely expecting more arguments than you are passing to it. However, if you got the abov...

Published 2022-09-04 07:58:50

Resize Image To Exact Dimensions | Imagemagic

ImageMagick provides a host of tools like the Convert command for modifying images. The Convert command can be used to resize images. You can resize your images in two ways...