@extends('manage.layout') @section('content')

Showing Management

@foreach($showings as $showing)

{{ $showing->movie->movie_name }}

{{ $showing->movie->movie_description }}

{{ $showing->movie->genre->genre_name }}

{{ $showing->room->cinema->cinema_name }} - {{ $showing->room->room_name }}

{{ $showing->room->cinema->address->string() }}

Times

Start: {{ $showing->showing_start }}
Ends : {{ $showing->showing_end() }}
@endforeach
Create Showing @endsection