@extends('layouts.app') @section('title', 'Our Videos') @section('meta_description', 'Watch Crosby Farm and Investments videos from our dairy, livestock, crop production, and farm investment operations.') @section('content')
Crosby Farm video gallery

Our Videos

Watch farm videos uploaded by the Crosby Farm administration team.

@if (count($videos))
@foreach ($videos as $video)

{{ $video['title'] ?? 'Farm Video' }}

@if (! empty($video['description']))

{{ $video['description'] }}

@endif

{{ $video['uploaded_at'] ?? 'Published Video' }}

@endforeach
@else

No videos published yet.

Please check back soon for new farm videos.

@endif
@endsection