Skip to content

Instantly share code, notes, and snippets.

@DianSano
Created December 3, 2019 08:33
Show Gist options
  • Select an option

  • Save DianSano/481d74b08a5588bc8d3ed10e38e73bcd to your computer and use it in GitHub Desktop.

Select an option

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
@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