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

{{__('Virtual System')}}

@forelse($data as $row) @empty @endforelse
{{__('ID')}} {{__('Title')}} {{__('Actions')}}
{{$row->id}} {{$row['title_'.\Config::get('app.locale')]}} @if(\Gate::check('edit-virtual-system') || \Gate::check('root-access') ) @endif @if(\Gate::check('delete-virtual-system') || \Gate::check('root-access') ) @endif
{{__('No Data')}}
{{__('Search By')}} {{__('ID')}} {{__('Search By')}} {{__('Title')}} @if(\Gate::check('new-virtual-system') || \Gate::check('root-access') ) {{__('Add New')}} @endif
@endsection