Skip to content
View mbpating's full-sized avatar

Block or report mbpating

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. laravel-coding-challenge laravel-coding-challenge Public

    Laravel React Inertia Coding Challenge for Contact Out

    PHP

  2. markpating-assessment-theme markpating-assessment-theme Public

    WebFx Assessment Theme Challenge.

    CSS

  3. Using Vue component in this gist lin... Using Vue component in this gist link. Complete the computed property "activeItems". https://gist.github.com/anish-dcruz/1fa2af7357914750ee2e21f74db4231b .
    1
    <template>
    2
      <div class="widget">
    3
        <div v-if="activeItems && activeItems.length > 0">
    4
          <ul>
    5
            <li v-for="item in activeItems" :key="item.id">
  4. Using laravel's HTTP tests, test the... Using laravel's HTTP tests, test the CustomerController's store method, make sure to mock the mailable "WelcomeNewCustomer" using mail-fake.
    1
    <?php
    2
    
                  
    3
    namespace Tests\Unit;
    4
    
                  
    5
    use PHPUnit\Framework\TestCase;
  5. Write a service class that handles s... Write a service class that handles saving and sending email then rewrite the store method.
    1
    <?php
    2
    
                  
    3
    namespace App\Http\Controllers;
    4
    
                  
    5
    use App\Http\Requests\CustomerRequest;