@extends('layouts.master')
@section('styles')
@endsection
@section('content')
@php
$type=request('type');
$breadcrumbs = [
['label' => 'Dashboard', 'url' => route('admin.dashboard')],
['label' => ($type=="video") ? 'Videos': 'Insta Reels', 'url' => url('admin/watch-earn/'.($type=="video" ? 'video' : 'insta')), 'active' => false],
['label' => 'Update', 'url' => '#', 'active' => true],
];
@endphp
----OR-----