PHP Classes

File: resources/views/products/excel/prod.blade.php

Recommend this page to a friend!
  Classes of adriano123456   Budget System   resources/views/products/excel/prod.blade.php   Download  
File: resources/views/products/excel/prod.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Budget System
Elaborate budgets for purchases of products
Author: By
Last change:
Date: 15 days ago
Size: 377 bytes
 

Contents

Class file image Download
<meta charset='utf-8'>

<table>
    <tr>
        <th>ID</th>
        <th>Códgio</th>
        <th>Descrição</th>
        <th>Quantidade</th>
    </tr>
    @foreach($products as $value)
    <tr>
        <td>{{$value->id}}</td>
        <td>{{$value->codigo}}</td>
        <td>{{$value->descricao}}</td>
        <td>{{$value->quantidade}}</td>
    </tr>
    @endforeach
</table>