@extends('layouts.admin') @section('css') @endsection @section('content')

Store Trending

{{ Form::open(['route' => ['admin.trending.store'],'id' => 'trending_form', 'method'=>'post']) }} @csrf
{{ Form::select('title_id', array('0' => 'Add New') + $Title, null, ['class' => 'form-select title_select select2', 'id'=>'title_id']) }} {{-- Add new --}}
{{ Form::close() }}

All Trending

@foreach ($Trending as $ne) @endforeach
@endsection @section('js') @endsection