8 Tailwind Stack
- https://tailblocks.cc/
- https://devdojo.com/tails/
- https://heroicons.com/
- https://tailwindcomponents.com/
- https://tailwinduikit.com/
- https://www.gustui.com/
- https://tailwindui.com/components
- https://www.tailwind-kit.com/
Search for a command to run...
No comments yet. Be the first to comment.
Plorin, one of the outside programmers, shared his business story through his twitter. Instead of focusing on one business, he prefers the concept of Multiple Stream Income in earning money. Then from where programmers can make money? As a consultan...
By default, the login feature uses checking based on email instead of a username. Then what if we want to check based on username? Here's how. On the file Controller\Auth\LoginController.php add the following methods: public function username() { ...
Laravel UI composer require laravel/ui //Then select the boardplate you like php artisan ui bootstrap --auth php artisan ui vue --auth php artisan ui react --auth npm install npm run dev php artisan migrate Laravel Breeze Install Breeze with Blade...
Imagine you have an order system for goods. Where the ordering system has a manual approval system. Then you are assigned by your manager to create a dashboard that displays the tempo status of customer orders that must be followed up by the admin. L...
Sometimes I have difficulty sorting data, for example, I want to sort data based on existing relationships with orderBy() and it doesn't work. My alternative solution tried to utilize sortBy(), this only works for data collection types. I have to run...
Case: In the warehouse application, display how long an item or items have been in the warehouse. model Stock.php <?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illumin...