NIM_E31221299/resources/views/tweet/result.blade.php

14 lines
612 B
PHP

@extends('layouts.app')
@section('content')
<div class="container mx-auto p-4">
<h1 class="text-xl font-bold mb-4">Hasil Scraping</h1>
<p>File: <a href="{{ $url }}" class="text-blue-600 underline" target="_blank">{{ $filename }}</a></p>
@if($count !== null)
<p>Total tweet: {{ $count }}</p>
@endif
<h2 class="mt-4 font-semibold">Log Output</h2>
<pre class="bg-gray-100 p-3 rounded overflow-auto" style="max-height: 300px;">{{ $outputLog }}</pre>
<a href="{{ route('scrap-tweets.form') }}" class="mt-4 inline-block text-blue-500 hover:underline">Kembali</a>
</div>
@endsection