Ayhan BARIS

Results 12 comments of Ayhan BARIS

![image](https://user-images.githubusercontent.com/733975/111884129-96bb6b00-89d0-11eb-8a39-eb994989bc38.png)

ayhan@mvk ~ % php -v PHP 7.4.16 (cli) (built: Mar 4 2021 20:52:51) ( NTS ) Copyright (c) The PHP Group Zend Engine v3.4.0, Copyright (c) Zend Technologies with Zend...

ayhan@mvk vaniloapp % composer show asm89/stack-cors v2.0.3 Cross-origin resource sharing library a... brick/math 0.9.2 Arbitrary-precision arithmetic library cocur/slugify v4.0.0 Converts a string into a slug. cviebrock/eloquent-sluggable 8.0.5 Easy creation of...

![image](https://user-images.githubusercontent.com/733975/113836911-fae27b00-9795-11eb-8908-a79618273f9f.png)

App\Models\User ![image](https://user-images.githubusercontent.com/733975/113838642-a2ac7880-9797-11eb-8b36-397de50e61f9.png)

```php public function register() { $this->app->concord->registerModel(\Konekt\User\Contracts\User::class, \App\Models\User::class); } ```

```php namespace App\Models; use Illuminate\Contracts\Auth\MustVerifyEmail; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Foundation\Auth\User as Authenticatable; use Illuminate\Notifications\Notifiable; class User extends \Konekt\AppShell\Models\User { } ```