PHP Classes

File: resources/views/components/blog-category-name-with-image.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Lara Filament   resources/views/components/blog-category-name-with-image.blade.php   Download  
File: resources/views/components/blog-category-name-with-image.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Lara Filament
Blog post management and publication system
Author: By
Last change:
Date: Yesterday
Size: 474 bytes
 

Contents

Class file image Download
@props(['record'])

<div style="display: flex; align-items: center;">
    @if ($record->image)
        <img src="{{ asset('storage/' . $record->image) }}" alt="{{ $record->name }}" style="max-width: 100px; max-height: 100px; margin-right: 10px;">
    @endif
    <div>
        <div style="font-weight: bold;">{{ $record->name }}</div>
        <div style="font-size: 0.9em; color: gray;" title="{{ $record->slug }}">{{ Str::limit($record->slug, 30) }}</div>
    </div>
</div>