@extends('dashboard.layouts.app') @section('title', __('dashboard.Scripts')) @section('page_heading', __('dashboard.Scripts')) @section('breadcrumb') @endsection @section('content')

{{ __('dashboard.Scripts') }}

@forelse ($scripts as $script) @empty @endforelse
{{ __('dashboard.ID') }} {{ __('dashboard.Title') }} {{ __('dashboard.Type') }} {{ __('dashboard.Status') }} {{ __('dashboard.Actions') }}
{{ $loop->iteration }} {{ $script->title }} @if ($script->type == 'header') {{ __('dashboard.Header') }} @elseif ($script->type == 'footer') {{ __('dashboard.Footer') }} @endif
is_active) checked @endif>
@csrf @method('DELETE')
{{ __('dashboard.No Scripts found') }}
@endsection @section('scripts') @endsection