Git Product home page Git Product logo

test-laravel-blade-basics's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

test-laravel-blade-basics's Issues

Missleading comment in HomeController

Comment on HomeController :
// Task 3. Change the View code to show users, or row "No content" if 0 users

For task 4 is wrong; it should read:
// Task 4: in row.blade.php
// in the first column, add the row number: 1, 2, etc.
// only every second row (2nd, 4th, etc) should have CSS class "bg-red-100"
// only the FIRST row should have email column with "font-bold"

Still in "1 workflow awaiting approval"

when performing a pull request, the testing is not performed, I have this text:
"1 workflow awaiting approval
First-time contributors need a maintainer to approve running workflows."

all my challenges are staked there.

Task 4: Style with numbers correct but test not validating

Hello,

For task 4, the rows styled with numbers, i believe what i have done is correct, however the test is saying that it is incorrect. I have copy pasted some code from another pull request to test what it looks like with their code and it is identical.

image

image

@foreach ($users as $user)
    {{-- Task: only every second row should have "bg-red-100" --}}
        <tr class="{{ $loop->even ? 'bg-red-100' : '' }}">
        <td>{{-- Task: add row number here: 1, 2, etc. --}}
            {{ $loop->iteration }}
        </td>
        <td>{{ $user->name }}</td>
        {{-- Task: only the FIRST row should have email with "font-bold" --}}
        <td class="{{ $loop->first ? 'font-bold' : '' }}">
            {{ $user->email }}</td>
        <td>{{ $user->created_at }}</td>
    </tr>
@endforeach

[BUG] test_meta_title?

Hi @PovilasKorop

First thanks for your time and effort in creating these Tests.

The test public function test_meta_title() is passing.
Just changing the line {{ __('Dashboard') }} to {{ __('Blade Test') }} in
dashboard.blade.php

Regards
Hari Krishna Bhagavatula

Tests failed on Install Dependencies

Install Dependencies
Run composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
Your lock file does not contain a compatible set of packages. Please run composer update.
Error: Process completed with exit code 2.

I've tried composer install and composer update both with and without the mentioned flags but it says, 'Nothing to install, update or remove'.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.