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

Tag

Title

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

Image

@if ($tag->image) {{ $tag->slug }} @else -- @endif

Slug

{{ $tag->slug ? $tag->slug : '--' }}

Status

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

Created At

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

Description

{!! $tag->description !!}

@endsection @section('scripts') @endsection