@extends('admin.layouts.app') @section('content')

{{__("Skills")}}

@include('admin.message')
{{__("Add Skill")}}
@csrf @include('Skill::admin/form')
@if(!empty($rows))
{{csrf_field()}}
@endif
@if( count($rows) > 0) @foreach ($rows as $row) @endforeach @else @endif
{{__("Name")}} {{__("Status")}} {{__("Date")}}
{{$row->name}} {{ $row->status }} {{display_date($row->updated_at)}}
{{__("No data")}}
@endsection