Skip to content
View MrPunyapal's full-sized avatar
Block or Report

Block or report MrPunyapal

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
MrPunyapal/README.md

Laravel Artisan Here 👋

Twitter Linkedin Profile Views

Join Laravel community

LaravelErrors

Development Environment:

WINDOWS11 RAM COREI7 NVIDIA2060

GitHub Streak

Pinned

  1. broadcast-with-laravel broadcast-with-laravel Public

    This code is from Laravel Ahmedabad Chapter Feb-2024 Talk

    PHP 7 1

  2. laravel-extended-relationships laravel-extended-relationships Public

    Package provides additional, more efficient relationship methods for Laravel Eloquent models.

    PHP 118 6

  3. basic-crud basic-crud Public

    Example of crud operations best practices for beginner to advanced

    PHP 85 30

  4. livewire-crud livewire-crud Public

    Example of crud operations with TALL Stack

    PHP 26 5

  5. PHP Function to Export Products as C... PHP Function to Export Products as CSV (without saving it in server)
    1
    <?php
    2
    
                  
    3
    function exportCSV()
    4
    {
    5
        header('Content-type: text/csv');
  6. Efficient Laravel Slug Generation: U... Efficient Laravel Slug Generation: Unique, Sleek, and No Looping 🚀
    1
    <?php
    2
    
                  
    3
    namespace App\Models;
    4
    
                  
    5
    use Illuminate\Database\Eloquent\Factories\HasFactory;