Skip to content
View enescglms's full-sized avatar
💭
Always Coding :)
💭
Always Coding :)

Block or report enescglms

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

Hey 👋

My name is Enes and I'm a Full Stack Web Developer, from Turkey

About Me

I have been developing Laravel projects as a Full Stack Web Developer for 3 years professionally.

I am a curious, team-oriented person who knows that there is no limit to learning, constantly improves himself, follows new technologies closely, is really passionate about software.

Tech Stack

php logo laravel logo vuejs logo git logo linux logo html5 logo css3 logo javascript logo tailwindcss logo redis logo mysql logo jira logo nginx logo apache logo docker logo bitbucket logo postman logo vscode logo phpstorm logo

Pinned Loading

  1. Collection Macro for Laravel Pagination Collection Macro for Laravel Pagination
    1
    <?php
    2
    
                  
    3
    namespace App\Providers;
    4
    
                  
    5
    use Illuminate\Support\Collection;
  2. .htaccess .htaccess
    1
    #HTTPS Redirect
    2
    RewriteEngine On
    3
    RewriteCond %{HTTPS} off
    4
    RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
    5
    
                  
  3. Localized URL Routable Localized URL Routable
    1
    <?php
    2
    
                  
    3
    public function getLocalizedRouteKey($locale)
    4
    {
    5
        return $this->contents->where('language_code', '=', $locale)->first()->keyword;