first commit
This commit is contained in:
64
Modules/Meeting/resources/views/meeting/show.blade.php
Normal file
64
Modules/Meeting/resources/views/meeting/show.blade.php
Normal file
@ -0,0 +1,64 @@
|
||||
@extends('layouts.app')
|
||||
|
||||
@section('content')
|
||||
<div class="page-content">
|
||||
<div class="container-fluid">
|
||||
@include('layouts.partials.breadcrumb', ['title' => $title])
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-8">
|
||||
<div class="card card-body p-4">
|
||||
<div>
|
||||
<div class="table-responsive">
|
||||
<table class="table-borderless mb-0 table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th><span class="fw-medium">Meeting Title</span></th>
|
||||
<td>{{ $item->title }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium">Date</span></th>
|
||||
<td> {{ $item->date }} </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium"> Client </span></th>
|
||||
<td>{{ ($item->client)->client_name }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium">Team Member</span></th>
|
||||
<td>{{ ($item->employee)->first_name }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium">Start Time</span></th>
|
||||
<td>{{ Carbon::parse($item->start_time)->format('h:i A') }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium">End Time</span></th>
|
||||
<td>{{ Carbon::parse($item->end_time)->format('h:i A') }}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th><span class="fw-medium">Location</span></th>
|
||||
<td>{{ $item->location }}</td>
|
||||
</tr>
|
||||
<th><span class="fw-medium">Description</span></th>
|
||||
<td>{{ $item->description }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="mb-3 text-end">
|
||||
<a href="{{ route('meeting.index') }}" class="btn btn-secondary w-sm">Back</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@push('js')
|
||||
<script src="{{ asset('assets/js/pages/form-validation.init.js') }}"></script>
|
||||
@endpush
|
Reference in New Issue
Block a user