Enjoy these free Code Nuggets?
Your support helps me create more high-quality content and unlocks exclusive premium nuggets via a personal activation link.
Support My Work & Get Exclusive Access100 lines challenge
javascriptWrite a 100 lines of code a day. JavaScript is simple, well, not that simple. But it can be if you write 100 lines a day.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CQI Progress Tracker</title>
<script src="https://cdn.tailwindcss.com"></script>
<style>
@keyframes pulse { 0%, 100% { tran...
Do the hard things first
phpProgramming is hard - or so you might see it when you are trying to learn it - but if you give up, you will not make great things. ALX,...
<?php
namespace App\Exports;
use App\Models\CqiProject;
use Maatwebsite\Excel\Concerns\FromCollection;
use Maatwebsite\Excel\Concerns\WithHeadings;
use Maatwebsite\Excel\Concerns\WithMapping;
use Illuminate\Support\Facades\DB;
class CqiProjectReportExport implements FromCollection, With...