This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "meta": { | |
| "theme": "professional" | |
| }, | |
| "basics": { | |
| "name": "Ahmet Bedir", | |
| "label": "Senior PHP & Laravel Developer", | |
| "email": "ahmetbedir16@gmail.com", | |
| "phone": "+90 5444866138", | |
| "url": "https://github.com/ahmetbedir", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| $request = new Request([], [], [], [], [], ['REQUEST_URI' => 'testing/1']); | |
| $request->setRouteResolver(function () use ($request) { | |
| return (new Route('GET', 'testing/{paramater_name}', []))->bind($request); | |
| }); | |
| dd($request->route()->parameter('paramater_name')); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "preset": "per", | |
| "rules": { | |
| "align_multiline_comment": true, | |
| "array_indentation": true, | |
| "array_syntax": true, | |
| "blank_line_after_namespace": true, | |
| "blank_line_after_opening_tag": true, | |
| "combine_consecutive_issets": true, | |
| "combine_consecutive_unsets": true, | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| namespace App\Http\Middleware; | |
| use Closure; | |
| use Illuminate\Http\Request; | |
| use Inertia\Middleware; | |
| class HandleInertiaRequests extends Middleware | |
| { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | { | |
| "$schema": "https://raw.githubusercontent.com/jsonresume/resume-schema/v1.0.0/schema.json", | |
| "basics": { | |
| "name": "Ahmet Bedir", | |
| "label": "Software Developer at Despatch Cloud", | |
| "image": "", | |
| "email": "a_bedir43@hotmail.com", | |
| "phone": "05444866138", | |
| "url": "", | |
| "summary": "", | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| namespace App\Console\Commands; | |
| use Illuminate\Console\Command; | |
| use Illuminate\Support\Facades\DB; | |
| class FindRiskyFieldsOnDatabases extends Command | |
| { | |
| /** | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /* | |
| Exemples : | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}"> | |
| - Or, request confirmation in the process - | |
| <a href="posts/2" data-method="delete" data-token="{{csrf_token()}}" data-confirm="Are you sure?"> | |
| */ | |
| (function() { | |
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | "use strict"; | |
| class LoadMore { | |
| constructor(action, contentId, buttonId) { | |
| this.action = action; | |
| this.content = document.getElementById(contentId.replace("#", "")); | |
| this.button = document.getElementById(buttonId.replace("#", "")); | |
| this.page = this.button.dataset.page; | |
| this.loading = false; | |
| this.button.addEventListener("click", event => { | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | /*-------------------------------------------------+ | |
| | Get current visitors count (whos.amung.us) | |
| +-------------------------------------------------*/ | |
| function getAmungStats($amung) { | |
| if(!isset($amung)) return false; | |
| $url = 'http://whos.amung.us/sitecount/' . $amung . '/'; | |
| $result = ''; | |
| if (function_exists('curl_init')) { | |
| $http_headers = array(); | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | <?php | |
| function qrcode(){ | |
| return new class { | |
| private $value; | |
| private $width = 250; | |
| private $height = 250; | |
| public function make() | |
| { | 
NewerOlder