@extends('layouts.app') @section('title', 'Search results for "' . e($query) . '" - ' . config('app.name')) @section('description', 'Ditemukan ' . $total_results . ' hasil drama yang relevan untuk pencarian "' . e($query) . '" di ' . config('app.name')) @section('image', env('FAVICON_URL', '/images/logo-s.png')) @section('type', 'website') @section('meta_extra') @endsection @section('content')

Ditemukan {{ $total_results }} hasil yang relevan dengan "{{ e($query) }}"

@foreach ($data as $item)
{{ $item['Title'] }}
@php $permalink = ltrim($item['Permalink'], '/'); if (str_starts_with($permalink, $lang . '/')) { $finalUrl = $permalink; } else { $finalUrl = $lang . '/' . $permalink; } @endphp

{{ $item['Title'] }}

{{ $item['Total_Episode'] }}

{{ $item['Sinopsis'] }}

{{ implode(',', $item['Genre']) }}
@php $permalink = ltrim($item['Permalink'], '/'); if (str_starts_with($permalink, $lang . '/')) { $finalUrl = $permalink; } else { $finalUrl = $lang . '/' . $permalink; } @endphp Putar
@endforeach
@endsection