@extends('super_admins.layouts.master') @section('title') View Service @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Service

Name

{{ $service->name ? $service->name : '--' }}

Status

{{ $service->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($service->created_at, 'd-m-Y') }}

Description

{!! $service->description !!}

@endsection @section('scripts') @endsection