fix: working copy, caching ASP, notworking orders though
This commit is contained in:
parent
dc5d204cfc
commit
390ad23e03
32 changed files with 246 additions and 194 deletions
|
@ -5,7 +5,7 @@
|
|||
|
||||
@push('head')
|
||||
<link rel="stylesheet" href="{{ asset('css/generic.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/manage.css') }}">
|
||||
<link rel="stylesheet" href="{{ asset('css/manage/manage.css') }}">
|
||||
@endpush
|
||||
|
||||
@section('body')
|
||||
|
|
|
@ -8,17 +8,5 @@
|
|||
<a href="{{ route('manage.movies.create') }}" class="button" style="height: 2rem; margin: 0.5rem 0;">Add Movie</a>
|
||||
</div>
|
||||
<hr/><br/>
|
||||
<div id="movies">
|
||||
@foreach($movies as $movie)
|
||||
<a href="/manage/movie/{{$movie->movie_id}}">
|
||||
<x-cache-image src="{{$movie->movie_image}}" alt="{{$movie->movie_name}} Poster" class="poster" width="200px"/>
|
||||
<div class="details">
|
||||
<h3>{{$movie->movie_name}}</h3><br/>
|
||||
<span>{{ Str::limit($movie->movie_description, 500) }}</span><br/>
|
||||
<hr/>
|
||||
<span>{{$movie->movie_length}} min | {{$movie->movie_year}}</span>
|
||||
</div>
|
||||
</a>
|
||||
@endforeach
|
||||
</div>
|
||||
<x-movie-list :movies="$movies"/>
|
||||
@endsection
|
||||
|
|
9
resources/views/manage/showings/create.blade.php
Normal file
9
resources/views/manage/showings/create.blade.php
Normal file
|
@ -0,0 +1,9 @@
|
|||
@extends('manage.layout')
|
||||
|
||||
@push('head')
|
||||
<link rel="stylesheet" href="{{ asset('css/manage.css') }}">
|
||||
@endpush
|
||||
|
||||
@section('content')
|
||||
|
||||
@endsection
|
Loading…
Add table
Add a link
Reference in a new issue