Change method boot
use Carbon\Carbon;
public function boot()
{
config(['app.locale' => 'id']);
| Watch the video at https://youtu.be/Tlu2Prm_UNw | |
| 1. Stop default apache | |
| % sudo apachectl stop | |
| % sudo launchctl unload -w /System/Library/LaunchDaemons/org.apache.httpd.plist 2>/dev/null | |
| 2. Install apache | |
| % brew install httpd | |
| % brew services start httpd |
| HIRE Me For Your Project Support :) | |
| Telegram: https://t.me/LinuxGun | |
| #!/bin/bash | |
| # Completely Remove Apache Ubuntu | |
| service apache2 stop | |
| apt purge apache2 | |
| apt remove apache2.* | |
| apt autoremove | |
| whereis apache2 |
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Bootstrap Table Checkbox Select All and Cancel</title> | |
| <link href="//cdn.bootcss.com/bootstrap/3.3.6/css/bootstrap.min.css" rel="stylesheet"> | |
| </head> | |
| <body> | |
| <h2>Bootstrap Table Checkbox Select All and Cancel</h2> | |
| <table class="table table-striped"> |
| @echo off | |
| SET st3Path=C:\Program Files\Sublime Text 3\sublime_text.exe | |
| rem add it for all file types | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3" /t REG_EXPAND_SZ /v "Icon" /d "%st3Path%,0" /f | |
| @reg add "HKEY_CLASSES_ROOT\*\shell\Open with Sublime Text 3\command" /t REG_SZ /v "" /d "%st3Path% \"%%1\"" /f | |
| rem add it for folders | |
| @reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with Sublime Text 3" /t REG_SZ /v "" /d "Open with Sublime Text 3" /f |
| # Create a new repository on the command line | |
| touch README.md | |
| git init | |
| git add README.md | |
| git commit -m "first commit" | |
| git remote add origin https://github.com/c0ldlimit/vimcolors.git | |
| git push -u origin master | |
| # Push an existing repository from the command line |