Para detener Jekyll server cuando por alguna razon no se detiene:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>La proxima vez que use el comando bundle exec jekyll server asegurese de detenerlo con la combinaci贸n de teclas Ctrl+C
Update
| <?php | |
| namespace App\Concerns\Controllers; | |
| use Illuminate\Support\Facades\Validator; | |
| use Illuminate\Validation\ValidationException; | |
| trait ValidateParam | |
| { | |
| protected array $parameters; |
Para detener Jekyll server cuando por alguna razon no se detiene:
$ lsof -wni tcp:4000
$ kill -9 <PID of process>La proxima vez que use el comando bundle exec jekyll server asegurese de detenerlo con la combinaci贸n de teclas Ctrl+C
Update
| public static function boot() | |
| { | |
| parent::boot(); | |
| static::creating(function ($model) { | |
| $model->nombre = strtoupper($model->nombre); | |
| }); | |
| } |
| { | |
| "countries" : [ | |
| { | |
| "name_en": "Afghanistan", | |
| "name_es": "Afganist谩n", | |
| "continent_en": "Africa", | |
| "continent_es": "脕frica", | |
| "capital_en": "Kabul", | |
| "capital_es": "Kabul", | |
| "dial_code": "+93", |
| <script setup> | |
| import {Inertia} from "@inertiajs/inertia"; | |
| import {Link} from "@inertiajs/inertia-vue3"; | |
| const props = defineProps({ | |
| links: { | |
| type: Object, | |
| default: () => ({}) | |
| } | |
| }) |
| { | |
| "rules": { | |
| "no-unused-vars": true, | |
| "no-undef": true, | |
| "no-redeclare": true, | |
| "no-unreachable": true, | |
| "no-console": true, | |
| "no-debugger": true | |
| }, | |
| "ignore": [ |
| <?php | |
| $finder = PhpCsFixer\Finder::create() | |
| ->in([ | |
| __DIR__ . '/app', | |
| __DIR__ . '/config', | |
| __DIR__ . '/database', | |
| __DIR__ . '/resources', | |
| __DIR__ . '/routes', | |
| __DIR__ . '/tests', |
| <?xml version="1.0"?> | |
| <ruleset name="Laravel Standards"> | |
| <description>The Laravel Coding Standards</description> | |
| <rule ref="PSR12" /> | |
| <exclude-pattern>*/database/*</exclude-pattern> | |
| <exclude-pattern>*/storage/*</exclude-pattern> | |
| <exclude-pattern>*/vendor/*</exclude-pattern> | |
| </ruleset> |
| { | |
| "preset": "laravel", | |
| "exclude": [ | |
| "vendor" | |
| ] | |
| } |
| <?php | |
| namespace App\Traits; | |
| use Illuminate\Http\Request; | |
| trait HandlesPerPageTrait | |
| { | |
| /** | |
| * Get the per page value from the request. |