Skip to content
View MrPunyapal's full-sized avatar
🐰
Learning slowly
🐰
Learning slowly
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

Hello World👋

______                                       ______   _______         _____ _____                         
___  / ______ _______________ ____   _______ ___  /   ___    |__________  /____(_)______________ ________ 
__  /  _  __ `/__  ___/_  __ `/__ | / /_  _ \__  /    __  /| |__  ___/_  __/__  / __  ___/_  __ `/__  __ \
_  /___/ /_/ / _  /    / /_/ / __ |/ / /  __/_  /     _  ___ |_  /    / /_  _  /  _(__  ) / /_/ / _  / / /
/_____/\__,_/  /_/     \__,_/  _____/  \___/ /_/      /_/  |_|/_/     \__/  /_/   /____/  \__,_/  /_/ /_/ 

Twitter Linkedin Profile Views

Join Laravel community

LaravelArtisans

Development Environment:

WINDOWS11 RAM COREI7 NVIDIA2060

GitHub Streak

Pinned Loading

  1. Types In PHP Types In PHP
    1
    ### Atomic Types (Built-in and Scalar)
    2
    
    
    3
    ```php
    4
    // Built-in types
    5
    $variable = null;             // null type
  2. basic-crud basic-crud Public

    Example of crud operations best practices for beginner to advanced

    PHP 114 33

  3. laravel-extended-relationships laravel-extended-relationships Public

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

    PHP 135 6

  4. broadcast-with-laravel broadcast-with-laravel Public

    This code is from Laravel Ahmedabad Chapter Feb-2024 Talk

    PHP 9 1

  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;