Skip to content

Instantly share code, notes, and snippets.

View wertex's full-sized avatar

Вертекс wertex

View GitHub Profile
Here with it I had problems
In your code:
const app = new Vue({
el: '#app',
component: { App },
router
});
My code:
const app = new Vue({
el: '#app',
namespace App;
use Illuminate\Database\Eloquent\Model;
class Employee extends Model
{
// Mass assigned
protected $fillable = [
'last_name',
'first_name',
@wertex
wertex / DadataClient.php
Created September 8, 2016 07:52 — forked from nalgeon/README.md
Пример работы с DaData API на PHP
<?php
namespace Dadata;
class DadataClient {
private $url,
$token;
public function __construct($url, $token, $secret) {
$this->url = $url;