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
Possible values for ext-name: | |
bcmath | |
bz2 | |
calendar | |
ctype | |
curl | |
dba | |
dom | |
enchant |
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
import React, { Component } from 'react'; | |
import ReactDOM from 'react-dom'; | |
import WidgetStateOrg from './bundle.js'; | |
import WidgetAuth from './widget_auth'; | |
export default class Widget1604 extends Component { | |
constructor(props, context) { | |
super(props, context); |
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
composer require laravel/ui --dev | |
php artisan ui vue --auth |
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
{ | |
"name": "laravel/laravel", | |
"type": "project", | |
"description": "The Laravel Framework.", | |
"keywords": [ | |
"framework", | |
"laravel" | |
], | |
"license": "MIT", | |
"require": { |
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
Материал по ReactJS: | |
#сринкасты от леарн js: | |
https://learn.javascript.ru/screencast/react#react-debugging-react-apps | |
https://es5.javascript.ru/#x10-toc | |
#Кэширование | |
https://habr.com/ru/company/oleg-bunin/blog/316652/ |
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
/** | |
Преобразование для DataTablesJs | |
для карты меню ГИСП ЛК | |
**/ | |
class XMLMenuController extends Controller | |
{ | |
public function uploadXMLMenu(Request $request) |
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
материал по созданию виджета cdn | |
http://alexmarandon.com/articles/web_widget_jquery/ |
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
composer require paragonie/random_compat:2.* | |
composer require laravel/passport=~4.0 |
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
/** | |
* рекурсивное удаление элементов меню | |
*/ | |
public function destroyRecursive($id){ | |
$parent = Menu::find($id); | |
$arrayOfIds = $this->getChildrenMenuDel($parent); | |
array_push($arrayOfIds,$id); | |
Menu::destroy($arrayOfIds); // этот стандарный метод моделей в ORM Eloquent который выполняет операцию удаления |
NewerOlder