@extends('master') @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Farm Highlights') . ' - ' . $farm->name, 'headerData' => __('Farms'), 'url' => 'farms', ])
@if (session('success')) @endif

{{ __('View Highlights') }} - {{ $farm->name }}

@forelse($highlights as $highlight) @empty @endforelse
{{ __('Highlight Text') }} {{ __('Status') }} {{ __('Action') }}
{{ Str::limit($highlight->highlight_text, 80) }} {{ $highlight->status == 1 ? __('Active') : __('Inactive') }}
@csrf @method('DELETE')
{{ __('No highlights found.') }}
@if(method_exists($highlights, 'links'))
{{ $highlights->links() }}
@endif
@endsection