Saturday, June 24, 2017

1.views->product->index.blade.php
----------------------------------------------------
@extends('layouts.product_layout')

@section('style')
    <style>
        th, td {
            padding: 10px;
        }

        button {
            padding: 5px 12px;
        }

        button a {
            text-decoration: none;
        }
    </style>
@endsection

@section('contents')
    <div>
        <a href="/product/create">
            <button>ADD</button>
        </a>
    </div>

    <table border="1">
        <thead>
        <tr>
            <th>ID</th>
            <th>Product</th>
            <th>Description</th>
            <th>Price</th>
            <th>Created at</th>
            <th>Updated at</th>
            <th>Action</th>
        </tr>
        </thead>
        <tbody>
        @foreach($products as $product)
            <tr>
                <td>{!! $product->id !!}</td>
                <td>{!! $product->name !!}</td>
                <td>{!! $product->description !!}</td>
                <td>{!! number_format($product->price) !!}</td>
                <td>{!! $product->created_at !!}</td>
                <td>{!! $product->updated_at !!}</td>
                <td>
                    <a href="/product/{!! $product->id !!}/edit">edit</a>
                    <a href="/product/{!! $product->id !!}/delete">delete</a>
                </td>
            </tr>
        @endforeach
        </tbody>
    </table>
@endsection

------------------------------------------

No comments:

Post a Comment