@extends('admin.layouts.master') @section('title') Home About AR @endsection @section('page-title') Home About AR @endsection @section('body') @endsection @section('content')

Home About AR

@foreach ($datas as $data) @endforeach
SVG Title Description Edit
{!! $data->svg_path !!} {{ $data->title }} @php $description = $data->Description; $maxLength = 50; // Set your desired character limit here $truncatedDescription = strlen($description) > $maxLength ? substr($description, 0, $maxLength) . '...' : $description; @endphp {{ $truncatedDescription }}
@csrf
@endsection @section('scripts') @endsection