@extends('layouts.admin') @section('content') Name Available on Frontend Suitable for Cigars Actions @foreach($locations as $location) {{ $location->name }} @if($location->available_on_frontend == 1) Yes @else No @endif @if($location->suitable_for_cigars == 1) Yes @else No @endif @csrf @method('delete') @endforeach @endsection