@if (count($assets_type) > 0) @foreach ($assets_type as $key => $assettype) @if ($assettype->type == 'css' || $assettype->type == 'scss' || $assettype->type == 'js') @php $assets = \App\Models\Asset::where('type', $assettype->type) ->where('theme_id', $theme_info->id) ->where('via', 'load') ->get(); @endphp

@if (count($assets) > 0) @foreach ($assets as $key => $asset) @endforeach @else @endif
# Theme-Name Asset In Header In Footer Action
{{ $key + 1 }} {{ $slug }} {{ $asset->asset }}

Nothing found

@endif @endforeach @else

You haven't any assets now

@endif
Configure CSS / JS VIA Manual Upload

@csrf
@if (count($assets_type) > 0) @foreach ($assets_type as $key => $assettype) @if ($assettype->type == 'css' || $assettype->type == 'scss' || $assettype->type == 'js') @php $assets = \App\Models\Asset::where('type', $assettype->type) ->where('theme_id', $theme_info->id) ->where('via', 'manual') ->get(); @endphp

@if (count($assets) > 0) @foreach ($assets as $key => $asset) @endforeach @else @endif
# Theme-Name Asset In Header In Footer Action
{{ $key + 1 }} {{ $slug }} {{ $asset->asset }}

Nothing found

@endif @endforeach @else

You haven't any assets now

@endif