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
<?php | |
class RelationsTest extends TestFeatureCase | |
{ | |
public function testSearchColumnsWithScope() | |
{ | |
$user = $this->users->random(); | |
$params = [ | |
'search' => $user->email, | |
'model' => Crypt::encryptString(EmptyUserModel::class), |
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
export interface PolonoElement { | |
type: string; | |
x: number; | |
y: number; | |
rotation: number; | |
locked: boolean; | |
// effects | |
blurEnabled: boolean; | |
blurRadius: number; |
OlderNewer