@section('style')
@endsection
@extends('layouts.backend.app')
@section('content')
Skill List
# |
Name |
Percent |
Action |
@foreach(App\Skill::latest()->get() as $key => $skill)
{{ $key+1 }} |
{{ $skill->name }} |
{{ $skill->percent }}% |
|
@endforeach
@endsection
@section('script')
@endsection