@extends('welcome')
@section('title','Opening Times')
@section('content-breadcrumb')
Opening Time
@endsection
@section('content')
@include('dashboard.messages')
Day
|
From
|
To
|
|
@if(count($times) > 0)
@foreach($times as $time)
{{ucfirst($time->day)}}
|
{{$time->from}}
|
{{$time->to}}
|
Edit
Delete
|
@endforeach
@else
There are no opening times added
to your coworking space yet
Please add your coworking opening times to let people know.
@endif
@endsection
@push('scripts')
@endpush