@extends('layouts.app') @section('title', 'Trending Videos | ' . config('app.name')) @section('extra_styles') @endsection @section('content') @if($videos->isEmpty()) @else
@foreach($videos as $video) @endforeach
@endif @endsection