- File > Settings > Languages & Frameworks > PHP > Blade
- Uncheck
use default settings
- Directives > +
- Name
livewire
- Prefix
<?php '', [
- Suffix
])?>
This file contains 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; | |
use Illuminate\Foundation\Http\Kernel as HttpKernel; | |
class Kernel extends HttpKernel | |
{ | |
//---- |
This file contains 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
var a = document.querySelectorAll('input[type=radio]'); | |
for (var i=0; i<a.length; i++) | |
// from https://stackoverflow.com/a/18066088/8148848 | |
a[i].checked = ( (Math.random()*10) > 5) ? true : false; |
This file contains 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
//http://ckeditor.com/comment/123266#comment-123266 | |
items | |
"Source" | |
"Save" | |
"NewPage" | |
"DocProps" | |
"Preview" | |
"Print" | |
"Templates" | |
"document" |