@extends('app') @section('title', 'View Plug Type - EV Charging Network') @section('content')
Plug Type Name
{{ $plugType->name }}
Status
{{ $plugType->status->label() }}
Created At
{{ $plugType->created_at->format('M d, Y H:i') }}
Last Updated
{{ $plugType->updated_at->format('M d, Y H:i') }}
@if($plugType->trashed())
Deleted At
{{ $plugType->deleted_at->format('M d, Y H:i') }}
@endif
@if(!$plugType->trashed())

Danger Zone

Delete Plug Type

Once deleted, the plug type will be moved to trash and can be restored.

@csrf @method('DELETE')
@endif
@endsection