@extends('admin.layout') @section('content')
{{ __('Technologies') }}
@forelse ($data as $technology)
{{ Form::open(['method' => 'DELETE', 'style' => 'margin-top: -12%;', 'action' => ['Admin\TechnologiesController@destroy', $technology->id]]) }} {{ Form::hidden('id', $technology->id) }} {{ Form::close() }}
Card image cap
{{ $type[$technology->type] }}
{{ $technology->{'name_' . App::getLocale()} }}
@empty
{{ __('no technology') }}
@endforelse
{{ $data->links() }}
@endsection