2023-08-30 21:15:58 +06:30
|
|
|
@extends('layouts.master')
|
|
|
|
|
|
|
|
@section('content')
|
2023-09-06 14:37:03 +06:30
|
|
|
|
|
|
|
@include('partials.manga-breadcrum')
|
|
|
|
|
|
|
|
<div class="row mt-5">
|
2023-12-12 15:15:38 +06:30
|
|
|
<div class="col-12 col-lg-9">
|
2023-09-24 22:24:08 +06:30
|
|
|
<x-inner-manga :manga="$manga" :chapters="$chapters" />
|
2023-09-06 14:37:03 +06:30
|
|
|
</div>
|
|
|
|
|
2023-12-12 15:15:38 +06:30
|
|
|
<div class="col-12 col-lg-3">
|
2023-09-06 14:37:03 +06:30
|
|
|
@include('partials.hot-manga')
|
2023-08-30 21:15:58 +06:30
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
|
|
|
|
@section('footer')
|
2023-09-06 14:37:03 +06:30
|
|
|
<x-footer />
|
2023-08-30 21:15:58 +06:30
|
|
|
@endsection
|