Created
December 3, 2019 08:33
-
-
Save DianSano/481d74b08a5588bc8d3ed10e38e73bcd to your computer and use it in GitHub Desktop.
index.blade.php (view all tickets) last update 03/12/2019 15.33
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @extends('master') | |
| @section('title', 'View all tickets') | |
| @section('content') | |
| <div class = "container col-md-8 col-md-offset-2"> | |
| <div class = "panel panel-default"> | |
| <div class = "panel-heading"> | |
| <h2> Tickets </h2> | |
| </div> | |
| @if ($tickets->isEmpty()) | |
| <p> There is no ticket.</p> | |
| @else | |
| <table class = "table"> | |
| <thead> | |
| <tr> | |
| <th>ID</th> | |
| <th>Title</th> | |
| <th>Status</th> | |
| </tr> | |
| </thead> | |
| <tbody> | |
| @foreach($tickets as $ticket) | |
| <tr> | |
| <td>{!!$ticket->id!!} </td> | |
| <td>{!!$ticket->title!!}</td> | |
| <td>{!!$ticket->status ? 'Pending' : 'Answered'!!}</td> | |
| </tr> | |
| @endforeach | |
| </tbody> | |
| </table> | |
| @endif | |
| </div> | |
| </div> | |
| @endsection | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment