Rustem-A/Page-Analyzer

View on GitHub
resources/views/domains/show.blade.php

Summary

Maintainability
A
0 mins
Test Coverage
@extends('layouts.app')

@section('title')
    Page-Analyzer
@endsection

@section('show')

<div>
<table class="table">
        <thead class="thead-light">
            <tr>
            <th scope="col">id</th>
            <th scope="col">URL</th>
            <th scope="col">Response Code</th>
            <th scope="col">content-length</th>
            <th scope="col">H1</th>
            <th scope="col">Keywords</th>
            <th scope="col">Description</th
            </tr>
        </thead>
        <tbody>
            <tr>
            <th scope="row">{{ $url->id }}</th>
            <td>{{ $url->name }}</td>
            <td>{{ $url->responseCode }}</td>
            <td>{{ $url->contentLength }}</td>
            <td>{{ $url->h1 }}</td>
            <td>{{ $url->keywords }}</td>
            <td>{{ $url->description }}</td>
            </tr>
        </tbody>
    </table>
</div>

@endsection