summaryrefslogtreecommitdiff
path: root/resources/views/index_anime.blade.php
diff options
context:
space:
mode:
authorhorus2020-09-16 11:13:53 +0200
committerhorus2020-09-16 11:13:53 +0200
commita5ff13269db053896b604fc29181d60e208d0463 (patch)
treea10820fcb0fba116ab0105ef1538d9a6f7069f4b /resources/views/index_anime.blade.php
parent98736ba280573b66eb3d5bf026ed943dc8ceb663 (diff)
downloadsenpai-a5ff13269db053896b604fc29181d60e208d0463.tar.gz
Major improvement.
Diffstat (limited to 'resources/views/index_anime.blade.php')
-rw-r--r--resources/views/index_anime.blade.php29
1 files changed, 0 insertions, 29 deletions
diff --git a/resources/views/index_anime.blade.php b/resources/views/index_anime.blade.php
deleted file mode 100644
index 2bb30de..0000000
--- a/resources/views/index_anime.blade.php
+++ /dev/null
@@ -1,29 +0,0 @@
-@extends('layouts.app')
-
-@section('content')
-<div class="container" id="index">
-
-<h1>Top anime this season</h1>
-@foreach($all_anime as $anime)
- <div class="row">
- <div class="col-sm-4 col-lg-3">
- <a href="/anime/{{ $anime->mal_id}}" title="Click for more data">
- <img src="{{ $anime->image_url }}" class="img-fluid" style="margin-bottom: 10px;">
- </a>
- </div>
- <div class="col-sm-8 col-lg-9">
- <h2>{{ $anime->title_pref }}</h2>
- <!--{!! str_replace("%%br%%", "<br>", e($anime->synopsis)) !!}-->
- {!! replaceSpecialChars(e($anime->synopsis)) !!}
- <br>
- <br>
- <a href="/anime/{{ $anime->mal_id}}" title="Click for more data">
- Click for more data
- </a>
- </div>
- </div>
-@endforeach
-
-{{ $all_anime->links() }}
-</div>
-@endsection