@extends('layouts.admin') @section('content') Add Occupation Import CSV File Occupations Created Date Code Name Status Actions @if(isset($occupations)) @foreach($occupations as $occupation) {{$occupation->created_at}} {{$occupation->occupation_code}} {{$occupation->occupation_name}} @if($occupation->is_active == '1') Active @else Inactive @endif @endforeach @endif @stop @section('pageBottomJs') @stop