Skip to content
View shibbirweb's full-sized avatar
Happy Coding
Happy Coding
Block or Report

Block or report shibbirweb

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
shibbirweb/README.md

Repos Badge Gists Badge Gists Badge

Languages and Tools:

Shibbir Ahmed's Top Languages

Shibbir Ahmed's github stats

Pinned

  1. ckeditor5-image-remove-event-callback-plugin ckeditor5-image-remove-event-callback-plugin Public

    CKEditor 5 image remove event handler plugin

    JavaScript 15 3

  2. Redirect non-www to www & http to ht... Redirect non-www to www & http to https .htaccess scripts
    1
    RewriteEngine On
    2
    
                  
    3
    #redirect non-www to www for all domain
    4
    RewriteCond %{HTTP_HOST} !^www\.
    5
    RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]
  3. Laravel helpful custom directive Laravel helpful custom directive
    1
    <?php
    2
    
                  
    3
    namespace App\Providers;
    4
    
                  
    5
    use Illuminate\Support\Facades\Blade;
  4. Laravel Regular Components Laravel Regular Components
    1
    {{-- Anchor tag --}}
    2
    
                  
    3
    {{--
    4
    5
    Usage Example::
  5. Generate unique slug for laravel Generate unique slug for laravel
    1
    <?php
    2
    
                  
    3
    namespace App\Helpers;
    4
    
                  
    5
    use App\Post;
  6. Laravel Load index from public folder Laravel Load index from public folder
    1
    <IfModule mod_rewrite.c>
    2
        <IfModule mod_negotiation.c>
    3
            Options -MultiViews
    4
        </IfModule>
    5