@extends('layouts.master') @section('content')
@if (request()->search)

#Search result by {{ request()->search }}

@endif
@forelse ($mangas as $manga) @empty @if (request()->search)

Found nothing!!

@else

No Manga Yet

@endif @endforelse

@include('partials.hot-manga')
{{ $mangas->links() }}
@endsection @section('footer') @endsection