@extends('admin.layouts.master') @section('content')
@if(session()->has('success'))
{{ session()->get('success') }}
@endif @if(session()->has('error'))
{{ session()->get('error') }}
@endif
@foreach($others as $key=>$row) @endforeach
Id Other Action
{{$row->id}} {{$row->other}}
{{ method_field('POST') }} {{ csrf_field() }}
@endsection