-
(Amazing cloud and VPS, cheapest then other) https://www.vultr.com/
- USE Coupoun "VULTRMATCH" and double your first payment.
-
(Good and old provider but vultr use faster Intel processor) digitalocean.com
-
(Have good deals) https://www.hostwinds.com/vps/linux
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
/* Enabling font which stored on fonts/ folder */ | |
@font-face { | |
font-family: 'Organetto'; | |
src: url('fonts/Organetto-Light.eot'); | |
src: local('Organetto Light'), local('Organetto-Light'), | |
url('fonts/Organetto-Light.eot?#iefix') format('embedded-opentype'), | |
url('fonts/Organetto-Light.woff2') format('woff2'), | |
url('fonts/Organetto-Light.woff') format('woff'), | |
url('fonts/Organetto-Light.ttf') format('truetype'), | |
url('fonts/Organetto-Light.svg#Organetto-Light') format('svg'); |
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
location /phpmyadmin { | |
#Auth | |
auth_basic "Restricted"; | |
auth_basic_user_file /etc/nginx/pma_pass; | |
expires modified +310s; | |
#Context | |
root /usr/share/; |
- Froala Editor link: https://www.froala.com/wysiwyg-editor/
- Vue-Quill-Editor link: https://surmon-china.github.io/vue-quill-editor/
- A lightweight WYSIWYG HTML editor for Vue.js link: https://github.com/chmln/vue-wysiwyg
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
mix.autoload({ | |
jquery: ['$', 'window.jQuery',"jQuery","window.$","jquery","window.jquery"] | |
}); | |
/** | |
* Manual: https://www.justin.ly/adding-jquery-bootstrap-plugins-laravel-5-mix/ | |
* Source: https://laracasts.com/discuss/channels/elixir/laravel-mix-required-jquery-plugins-cant-be-found | |
*/ |
command: git pull
Error: Your local changes to the files would be owerwritten by merge:
- list of files..
Solution
or (check what working for you)
Working but it must added to app/Exceptions/Handler.php
not VerifyCsrfToken.php
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
location /phpmyadmin { | |
root /usr/share/; | |
index index.php; | |
try_files $uri $uri/ =404; | |
location ~ ^/phpmyadmin/(doc|sql|setup)/ { | |
deny all; | |
} | |
location ~ /phpmyadmin/(.+\.php)$ { |
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\Controllers; | |
use Illuminate\Http\Request; | |
class PostsController extends Controller | |
{ | |
/** | |
* Base methods structure |
NewerOlder