filamentphp admin route not found
if you just installed Filamentphp admin panel and “/admin” gives you a 404 error try clearing route cache.
php artisan route:clear
if you just installed Filamentphp admin panel and “/admin” gives you a 404 error try clearing route cache.
php artisan route:clear
We are going to build a Livewire component using tagify library. tagify is a javascript library with a lot of features to make a tag input like this: the goal is to create a livewire component to interact with this library. Install Livewire First, install Livewrie in your Laravel project…
there is a function in php called fputcsv which helps us create a csv file. as the first parameter, it gets the file we opened with fopen, and for the second one, we put the array we want to put into the CSV file. it will be an array of…
In php we can use Guzzle library to download images. Here I am using books.toscrape.com website as an example. First, we have to install Guzzle library. and then include “autoload.php” file. we need the “src” of the images we want to scrape. use inspect element to find the address. then…
sometimes we need to order the records of a table based on a column from another table. imagine we have a table called “authors” that has a relationship with a “books” table. we might need to get books and sort them based on author’s name. here I will explain ordering…
recently I installed a new wordpress installation using laragon. but after opening homepage I got this error: Fatal error: Uncaught mysqli_sql_exception: Table ‘wp1.wp_options’ doesn’t exist I checked PHPMyAdmin and the database existed but the installation page didn’t show up. after searching on the web for a few minutes I found…
changing php version in local web server doesn’t change the version in the command line terminal of an IDE like PhpStorm. here I changed the php version in laragon but the version in phpstorm terminal stays the same. you can check it with php -v command to change that we…