first change
This commit is contained in:
52
Modules/Meeting/resources/views/events/show.blade.php
Normal file
52
Modules/Meeting/resources/views/events/show.blade.php
Normal file
@@ -0,0 +1,52 @@
|
||||
@extends('layouts.app')
|
||||
@inject('employeeRepository', 'Modules\Employee\Repositories\EmployeeRepository')
|
||||
@use('Carbon\Carbon')
|
||||
@section('content')
|
||||
<div class="container-fluid">
|
||||
<x-dashboard.breadcumb :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">Event Title</span></th>
|
||||
<td>{{ $item->title }}</td>
|
||||
</tr>
|
||||
<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('event.index') }}" class="btn btn-secondary w-sm">Back</a>
|
||||
</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