Giter VIP home page Giter VIP logo

Comments (4)

sebastiandedeyne avatar sebastiandedeyne commented on May 22, 2024

That's really odd, since the method simply returns an array. Could you share a full code snippet that doesn't work as expected, or PR a failing test?

from opening-hours.

JeftaChibiya avatar JeftaChibiya commented on May 22, 2024

Sure! Here's what I have:

The method in controller:

  public function about()
    {
        $openingHours = OpeningHours::create([
            'monday' => ['09:00-12:00', '13:00-18:00'],
            'tuesday' => ['09:00-12:00', '13:00-18:00'],
            'wednesday' => ['09:00-12:00'],
            'thursday' => ['09:00-12:00', '13:00-18:00'],
            'friday' => ['09:00-12:00', '13:00-20:00'],
            'saturday' => ['09:00-12:00', '13:00-16:00'],
            'sunday' => [],
            'exceptions' => [
                '08-26' => ['10:00-20:00'],
                '01-01' => [], // Recurring on each 1st of january
                '12-25' => ['09:00-12:00'], // Recurring on each 25th of december
            ],  
        ]);

        $thisWeek = $openingHours->forWeek(); 
        
        return view('about', compact('thisWeek'));        
    }

And in the view:

      @foreach($thisWeek as $day)
           {{ $day }}
         //  I'm actually not too sure what attributes I can extract from each single item here
      @endforeach

Result:
ErrorException: htmlspecialchars() expects parameter 1 to be string, object given

from opening-hours.

JeftaChibiya avatar JeftaChibiya commented on May 22, 2024

I really appreciate your time and help @sebastiandedeyne.
Could you please share with me an example of how you would loop through it?

Thanks!

from opening-hours.

sebastiandedeyne avatar sebastiandedeyne commented on May 22, 2024
@foreach($thisWeek as $day => $openingHours)
           {{ $day }}
@endforeach

$day will contain the day name. openingHours will be an object containing the hours for that day. Refer to the OpeningHoursForDay class to see what you can extract from it :)

https://github.com/spatie/opening-hours/blob/master/src/OpeningHoursForDay.php

from opening-hours.

Related Issues (20)

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.