@extends('layouts.app') @section('title', '| Groups') @section('content')
| Name | Date/Time Added | Operations |
|---|---|---|
| {{ $group->group_name }} | {{ $group->created_at->format('F d, Y h:ia') }} |
{{-- Edit --}}
{!! Form::open(['method' => 'DELETE', 'route' => ['groups.destroy', $group->id] ]) !!}
{!! Form::submit('Delete', ['class' => 'btn btn-danger']) !!}
{!! Form::close() !!}
|