In your command-line run the following commands:
brew doctor
brew update
<script> | |
export default { | |
props: { | |
color: { | |
type: String, | |
default: 'teal', | |
validator: value => ['teal', 'orange'].includes(value) | |
} | |
} | |
} |
<?php | |
namespace App\Console\Commands; | |
use App\User; | |
use Illuminate\Console\Command; | |
use Illuminate\Support\Facades\DB; | |
use Illuminate\Support\Facades\File; | |
use SplFileInfo; | |
use Statamic\Facades\YAML; |
In your command-line run the following commands:
brew doctor
brew update