I hereby claim:
- I am shakurov on github.
- I am shakurov (https://keybase.io/shakurov) on keybase.
- I have a public key ASDK4SJDKcslhd86rTVZiWVsCCo38k_LIVHwQuq-E_b51go
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
const us = [ | |
'AL', | |
'AK', | |
'AS', | |
'AZ', | |
'AR', | |
'CA', | |
'CO', | |
'CT', | |
'DE', |
:root { | |
--light: #f8f9fa; | |
} | |
body { | |
background-color: var(--light); | |
} |
<?php | |
namespace App\Models; | |
use Illuminate\Database\Eloquent\Model; | |
class Country extends Model | |
{ | |
protected $primaryKey = 'code'; |
<?php | |
namespace App\Models; | |
use App\Traits\CompositeKey; | |
use App\Traits\SoftDeletes; | |
use Illuminate\Database\Eloquent\Model; | |
class Like extends Model | |
{ |
<?php | |
namespace App\Scopes; | |
use Illuminate\Database\Eloquent\Scope; | |
use Illuminate\Database\Eloquent\Model; | |
use Illuminate\Database\Eloquent\Builder; | |
class SortOrderScope implements Scope | |
{ |
<?php | |
namespace App\Traits; | |
use Illuminate\Database\Eloquent\SoftDeletingScope; | |
trait SoftDeletes | |
{ | |
/** | |
* Indicates if the model is currently force deleting. |
<?php | |
namespace App\Traits; | |
use Illuminate\Database\Eloquent\Builder; | |
use Illuminate\Database\Eloquent\ModelNotFoundException; | |
trait CompositeKey | |
{ | |
/** |