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

Test

Title

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

Image

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

Slug

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

Status

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

Created At

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

Description

{!! $test->description !!}

@endsection @section('scripts') @endsection