PHP Classes

File: resources/views/post/show.blade.php

Recommend this page to a friend!
  Classes of Ali YILMAZ   Laravel 9 CRUD Example   resources/views/post/show.blade.php   Download  
File: resources/views/post/show.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel 9 CRUD Example
Example of CRUD application using Laravel 9
Author: By
Last change:
Date: 1 year ago
Size: 999 bytes
 

Contents

Class file image Download
@extends('post.layout')

@section('content')

    <div class="row justify-content-center">
        <div class="col-lg-8 margin-tb">
            <div class="row">
                <div class="col-md-12">
                    <div class="mt-5">
                        <h2> Show Post</h2>
                    </div>
                </div>
                <div class="col-md-12 text-end mt-4">
                    <a class="btn btn-primary" href="{{ route('posts.index') }}">< Back</a>
                </div>
            </div>
        </div>
    </div>

    <div class="row justify-content-center mt-5">
        <div class="col-lg-8 margin-tb">
            <table class="table table-bordered">
                <tr>
                    <th>Title</th>
                    <th>Body</th>
                </tr>
                <tr>
                    <td>{{ $post->title }}</td>
                    <td>{{ $post->body }}</td>
                </tr>
            </table>
        </div>
    </div>
@endsection