@extends('admin.layouts.app') @section('title', 'Variation Options') @section('content')

Variation Options

Add New Option
@if(session('success')) @endif
@forelse($options as $option) @empty @endforelse
Type Value (EN) Value (AR) Code Order Status Actions
{{ $option->type->name_en }} {{ $option->value_en }} {{ $option->value_ar }} @if($option->code)
{{ $option->code }}
@else - @endif
{{ $option->order }} {{ $option->is_active ? 'Active' : 'Inactive' }}
Edit
@csrf @method('DELETE')
No variation options found.
{{ $options->links() }}
@endsection