File Manager Lite
Dir:
/home/u540325668/domains/mkjsindia.org/public_html-chash/resources/views/admin/customers
Upload
[..]
edit.blade.php (18.27 KB)
Edit
Rename
Del
editPhoto.blade.php (5.02 KB)
Edit
Rename
Del
pdf.blade.php (1.39 KB)
Edit
Rename
Del
Edit: pdf.blade.php
<!DOCTYPE html> <html> <head> <style> table { width:100%; } table, th, td { border: 1px solid black; border-collapse: collapse; } th, td { padding: 15px; text-align: left; } </style> </head> <body> <h2>Table With Border</h2> <p>Use the CSS border property to add a border to the table.</p> <table > <thead> <tr> <th>Id</th> <th>Category Name</th> <th>Status</th> </tr> </thead> <tbody> @foreach($categoryTypes as $categoryType) <tr> <td>{{ $categoryType->id}}</td> <td>{{ $categoryType->categoryType}}</td> <td>@if($categoryType->publicationStatus == 1) <span class="btn btn-success">Active</span> @elseif($categoryType->publicationStatus ==2) <span class="btn btn-danger">Not Active</span> @endif </td> </tr> @endforeach </body> </html>
Simpan