Run command
npm install font-awesome --save
Then edit the resources/assets/saas/app.scss file and add at the top this line:
@import "~font-awesome/scss/font-awesome.scss";
Now you can do for example:
Run command
npm install font-awesome --save
Then edit the resources/assets/saas/app.scss file and add at the top this line:
@import "~font-awesome/scss/font-awesome.scss";
Now you can do for example:
Using command:
php artisan key:generate
Index Lengths & MySQL / MariaDB
Laravel uses the utf8mb4 character set by default, which includes support for storing "emojis" in the database. If you are running a version of MySQL older than the 5.7.7 release or MariaDB older than the 10.2.2 release, you may need to manually configure the default string length generated by migrations in order for MySQL to create indexes for them. You may configure this by calling the Schema::defaultStringLength method within your AppServiceProvider
[Illuminate\Database\QueryException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes (SQL: alter table users add unique users_email_unique(email))
[PDOException] SQLSTATE[42000]: Syntax error or access violation: 1071 Specified key was too long; max key length is 767 bytes
| # Edit by: Ngoc Khuong ([email protected]) | |
| # Website: https://ngockhuong.com | |
| ########################## Network Information ########################## | |
| param ( | |
| [string]$Name = "Wi-Fi", # Ethernet / Wi-Fi | |
| [string]$Type = "DHCP", # Static / DHCP | |
| [IPAddress]$IP = "192.168.1.2", | |
| [string] $CIDR = 24, # This means subnet mask = 255.255.255.0, |
| import java.io.File; | |
| import java.io.IOException; | |
| import javax.servlet.ServletException; | |
| import javax.servlet.annotation.MultipartConfig; | |
| import javax.servlet.http.HttpServlet; | |
| import javax.servlet.http.HttpServletRequest; | |
| import javax.servlet.http.HttpServletResponse; | |
| import javax.servlet.http.Part; |
| The Android Studio website has recently (I think) provided some advice what kind of messages to expect from different log levels that may be useful along with Kurtis' answer: | |
| Verbose - Show all log messages (the default). | |
| Debug - Show debug log messages that are useful during development only, as well as the message levels lower in this list. | |
| Info - Show expected log messages for regular usage, as well as the message levels lower in this list. | |
| Warn - Show possible issues that are not yet errors, as well as the message levels lower in this list. | |
| Error - Show issues that have caused errors, as well as the message level lower in this list. | |
| Assert - Show issues that the developer expects should never happen. |
| /* Skin for Blogger Tabbed Layout TOC */ | |
| #tabbed-toc { | |
| margin:0 auto; | |
| background-color:#224C19; | |
| -webkit-box-shadow:0 1px 3px rgba(0,0,0,.4); | |
| -moz-box-shadow:0 1px 3px rgba(0,0,0,.4); | |
| box-shadow:0 1px 3px rgba(0,0,0,.4); | |
| overflow:hidden; | |
| position:relative; |
| /** | |
| * Blogger Tabbed Style Table of Content Widget by Taufik Nurrohman | |
| * Free for change but keep the original attribution. | |
| * URL: https://plus.google.com/108949996304093815163/about | |
| * TEMPLATES: <div id="tabbed-toc"><span class="loading">Loading...</span></div><script type="text/javascript">var tabbedTOC = {blogUrl:"http://latitudu.blogspot.com", containerId: "tabbed-toc", activeTab: 1};</script><script type="text/javascript" src="js/tabbed-toc.js"></script> | |
| */ | |
| var tabbedTOC_defaults = { | |
| blogUrl: "http://www.kênhit.vn", // Blog URL | |
| containerId: "tabbed-toc", // Container ID |
<script>
$.ajax({
url: 'URL',
type: '',
cache: false,
data: {
//Dữ liệu gửi đi
},
success: function(data){