@extends('layouts.app') @section('nav-bar-context-icon') @endsection @section('content')
@foreach($timeslots as $timeslot) @if($timeslot->laborsOfTheDay->where("user_id","=",Auth::user()->id)->count() > 0)

{{$timeslot->label}}

@endif @foreach($timeslot->laborsOfTheDay->where("user_id","=",Auth::user()->id) as $labor) @endforeach @endforeach
@endsection