@extends('layouts.app') @section('content')
@foreach($all_anime as $anime) @if ( $anime->season_name != getSeason() && "airing_anime" == \Request::route()->getName() ) @once

Continuing from earlier Seasons

@endonce @endif
getName() ) @if ( 0 < $anime->score_today - $anime->score_begin ) border-color: green; @else border-color: red; @endif @endif ">
{{ $anime->title }} @if ( ! compare($anime->title, $anime->title_pref) )
{{ $anime->title_pref }}@endif
score: {{ $anime->score_today ? $anime->score_today : "n/a" }}, members: {{ $anime->members }} @if( "surprising_anime" == \Request::route()->getName())
@if ( 0 < $anime->score_today - $anime->score_begin ) Rose @else Fell @endif from {{ $anime->score_begin }} to {{ $anime->score_today }} (diff: {{ $anime->score_today - $anime->score_begin }}) @endif

{!! replaceSpecialChars(e($anime->synopsis)) !!}

More
@endforeach
@if ($all_anime instanceof \Illuminate\Pagination\LengthAwarePaginator) {{ $all_anime->links() }} @endif
@endsection