If you encounter this error while running the symbolic artisan command, its mostly likely because you changed your laravel code directory which already had a symbolic link generated. To resolve this, change your current directory to the public folder then delete the storage file. cd public rm storage Next [...]

Breaking Long Words With CSS

Web Development Oct 28, 2018 10:10 pm 0 Comments

Featured Image

Overflowing text can be annoying. If you do a quick research on how to wrap the  overflowing text, you might run into the CSS properties word-wrap, word-break, and overflow-wrap. You might be wondering which one to use. Here's some helpful information. The Problem Solution <div class="text-container" [...]