@extends('layouts.layout') @section('content')

Reseller Levels

@include('notify.errors') @include('notify.success')

Edit {{$level->title}}

@csrf
@foreach($softwares as $software)
@if(\App\LevelResellerOption::where('software_id',$software->id)->where('level_reseller_id',$level->id)->count() > 0 ) @php $price =\App\LevelResellerOption::where('software_id',$software->id)->where('level_reseller_id',$level->id)->first()->price_reseller; @endphp @else @php $price = 0 ; @endphp @endif
@endforeach
@endsection