@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' => 'Create', 'url' => '#', 'active' => true], ]; @endphp
@csrf
@if($type=="video")
@else @endif
@if ($type!='insta') @endif
@if ($type!='insta')
@endif

----OR-----

@endsection @section('scripts') @include('layouts.components.common-script') @vite('resources/assets/js/select2.js') @endsection