Skip to content
View willchambers99's full-sized avatar

Block or report willchambers99

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. Store or update in one function Store or update in one function
    1
    <?php
    2
    
                  
    3
    public function crupdate($id = null, Request $request)
    4
    {
    5
        $fields = $request->only(['field_1', 'field_2']);
  2. Example PHP service that can be used... Example PHP service that can be used to implement an API.
    1
    <?php
    2
    
                  
    3
    namespace App\Services;
    4
    
                  
    5
    use Illuminate\Support\Facades\Log;
  3. Drag and drop component for vue js. Drag and drop component for vue js.
    1
    <template>
    2
        <div class="drag-and-drop">
    3
            <div class="drop-zone"
    4
                 @drop='onDrop($event, 1)'
    5
                 @dragover.prevent
  4. A simple vue js component for taggin... A simple vue js component for tagging items using an input.
    1
    <template>
    2
        <div class="tag-input">
    3
            <div v-for='(tag, index) in tags' :key='tag' class='tag-input__tag'>
    4
                <span @click="removeTag(index)">x</span>
    5
                {{ tag }}
  5. lezhnev74/openapi-psr7-validator lezhnev74/openapi-psr7-validator Public

    It validates PSR-7 messages (HTTP request/response) against OpenAPI specifications

    PHP 169 10